Searched refs:masks (Results 1 - 25 of 36) sorted by relevance

12

/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ure/
H A Durestubs.c67 } masks[32] = { variable in typeref:struct:ucmaskmap
121 mask1 |= masks[i].mask1;
122 mask2 |= masks[i].mask2;
/macosx-10.10/pdisk-9/
H A Dbitfield.c46 const unsigned int masks[] = { variable
83 m = masks[length];
99 m = masks[length];
/macosx-10.10/ruby-106/ruby/benchmark/
H A Dbm_so_nsieve_bits.rb16 masks = ""
18 masks << (1 << b).chr
29 items[a] -= masks[b] if items[a][b] != 0
H A Dbm_so_meteor_contest.rb34 # create the rotational masks by placing the base mask at the location and seeing if
179 # masks -- an array by location of all legal rotational masks (a n inner array) for that location
182 attr_reader :rotations, :type, :masks
198 # creates the masks AND a map that returns [location, rotation] for any given mask
200 @masks = Array.new();
203 @masks[i] = @rotations.collect do | rotation |
208 @masks[i].compact!
457 piece.masks[0].each do | mask, imask, cmask |
486 piece.masks[start_locatio
[all...]
/macosx-10.10/tcl-105/tcl_ext/tkimg/tkimg/bmp/
H A Dbmp.c26 /* Structure for reading bit masks for compression type BI_BITFIELDS */
194 GetChannelMasks(intMask, masks)
196 BitmapChannel *masks;
203 masks[i].mask = mask;
215 masks[i].shiftin = offset;
216 masks[i].shiftout = 8 - nbits;
269 /* Read the channel masks. */
324 BitmapChannel masks[3]; local
334 GetChannelMasks(intMask, masks);
336 masks[
[all...]
/macosx-10.10/cups-408/cups/scheduler/
H A Dauth.h124 extern int cupsdAddIPMask(cups_array_t **masks,
129 extern int cupsdAddNameMask(cups_array_t **masks, char *name);
132 extern int cupsdCheckAuth(unsigned ip[4], const char *name, size_t namelen, cups_array_t *masks);
H A Dauth.c107 cups_array_t **masks, /* IO - Masks array (created as needed) */
115 "cupsdAddIPMask(masks=%p(%p), address=%x:%x:%x:%x, "
117 masks, *masks,
126 * Create the masks array as needed and add...
129 if (!*masks)
130 *masks = cupsArrayNew3(NULL, NULL, NULL, 0,
134 return (cupsArrayAdd(*masks, &temp));
196 cupsdAddNameMask(cups_array_t **masks, /* IO - Masks array (created as needed) */ argument
205 "cupsdAddNameMask(masks
106 cupsdAddIPMask( cups_array_t **masks, const unsigned address[4], const unsigned netmask[4]) argument
1069 cupsdCheckAuth(unsigned ip[4], const char *name, size_t name_len, cups_array_t *masks) argument
[all...]
/macosx-10.10/tcpdump-61/tcpdump/
H A Dprint-cnfp.c77 u_int32_t masks; /* src,dst addr prefix; v6: encaps */ member in struct:nfrec
137 (EXTRACT_32BITS(&nr->masks) >> 24) & 0xff);
146 (EXTRACT_32BITS(&nr->masks) >> 16) & 0xff);
182 (EXTRACT_32BITS(&nr->masks) >> 8) & 0xff,
183 (EXTRACT_32BITS(&nr->masks)) & 0xff);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/libraries/liblunicode/ucdata/
H A Ducdata.c74 * A simple array of 32-bit masks for lookup.
1300 int ucdata_load(char *paths, int masks) { return 0; } argument
1301 void ucdata_unload(int masks) { } argument
1302 int ucdata_reload(char *paths, int masks) { return 0; } argument
1308 ucdata_load(char *paths, int masks) argument
1312 if (masks & UCDATA_CTYPE)
1314 if (masks & UCDATA_CASE)
1316 if (masks & UCDATA_DECOMP)
1318 if (masks & UCDATA_CMBCL)
1320 if (masks
1331 ucdata_unload(int masks) argument
1353 ucdata_reload(char *paths, int masks) argument
[all...]
H A Dapi.txt38 void ucdata_load(char *paths, int masks)
42 files to be loaded are specified in the `masks' parameter as a bitwise
52 void ucdata_unload(int masks)
54 This function unloads the data tables specified in the `masks' parameter.
64 void ucdata_reload(char *paths, int masks)
68 specified in the `masks' parameter as a bitwise combination of the macros
/macosx-10.10/ICU-531.30/icuSources/i18n/
H A Drbt_rule.h60 // are used only by masks() and getIndexValue() which are called
244 * Return true if this rule masks another rule. If r1 masks r2 then
245 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
246 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
247 * "[c]a>x" masks "[dc]a>y".
249 * @return true if this rule masks 'r2'
251 virtual UBool masks(cons
[all...]
H A Drbt_rule.cpp247 * Return true if this rule masks another rule. If r1 masks r2 then
248 * r1 matches any input string that r2 matches. If r1 masks r2 and r2 masks
249 * r1 then r1 == r2. Examples: "a>x" masks "ab>y". "a>x" masks "a[b]>y".
250 * "[c]a>x" masks "[dc]a>y".
252 UBool TransliterationRule::masks(const TransliterationRule& r2) const { function in class:TransliterationRule
253 /* Rule r1 masks rule r2 if the string formed of the
272 * means the row masks th
[all...]
H A Drbt_set.cpp369 if (r1->masks(*r2)) {
375 //| errors.append("Rule " + r1 + " masks " + r2);
/macosx-10.10/xnu-2782.1.97/osfmk/kern/
H A Dipc_host.c622 exception_mask_array_t masks,
654 masks[j] |= (1 << i);
659 masks[j] = (1 << i);
684 exception_mask_array_t masks,
730 masks[j] |= (1 << i);
735 masks[j] = (1 << i);
619 host_get_exception_ports( host_priv_t host_priv, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t * CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors ) argument
678 host_swap_exception_ports( host_priv_t host_priv, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t * CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors ) argument
H A Dipc_tt.c1771 * data, MIG returnes an error otherwise. The masks
1794 exception_mask_array_t masks,
1849 masks[j] |= (1 << i);
1855 masks[j] = (1 << i);
1895 exception_mask_array_t masks,
1946 masks[j] |= (1 << i);
1952 masks[j] = (1 << i);
2008 exception_mask_array_t masks,
2046 masks[j] |= (1 << i);
2052 masks[
1788 thread_swap_exception_ports( thread_t thread, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
1889 task_swap_exception_ports( task_t task, exception_mask_t exception_mask, ipc_port_t new_port, exception_behavior_t new_behavior, thread_state_flavor_t new_flavor, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
2005 thread_get_exception_ports( thread_t thread, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
2072 task_get_exception_ports( task_t task, exception_mask_t exception_mask, exception_mask_array_t masks, mach_msg_type_number_t *CountCnt, exception_port_array_t ports, exception_behavior_array_t behaviors, thread_state_flavor_array_t flavors) argument
[all...]
/macosx-10.10/xnu-2782.1.97/osfmk/mach/
H A Dhost_priv.defs246 out masks : exception_mask_array_t;
263 out masks : exception_mask_array_t;
H A Dthread_act.defs240 out masks : exception_mask_array_t;
256 out masks : exception_mask_array_t;
H A Dtask.defs222 out masks : exception_mask_array_t;
239 out masks : exception_mask_array_t;
/macosx-10.10/system_cmds-643.1.1/lsmp.tproj/
H A Dtask_details.c109 exception_mask_t masks[EXC_TYPES_COUNT]; member in struct:exc_port_info
174 kr = task_get_exception_ports(taskinfo->task, mask, excinfo.masks, &excinfo.count, excinfo.ports, excinfo.behaviors, excinfo.flavors);
188 get_exc_mask_string(excinfo.masks[i], mask_string, 200);
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebFontCache.mm69 const NSFontTraitMask masks[] = {
82 while ((mask = masks[i++])) {
/macosx-10.10/emacs-93/emacs/lisp/progmodes/
H A Dflymake.el268 (defcustom flymake-allowed-file-name-masks
294 (defun flymake-get-file-name-mode-and-masks (file-name)
295 "Return the corresponding entry from `flymake-allowed-file-name-masks'."
298 (let ((fnm flymake-allowed-file-name-masks)
299 (mode-and-masks nil))
300 (while (and (not mode-and-masks) fnm)
302 (setq mode-and-masks (cdr (car fnm))))
304 (flymake-log 3 "file %s, init=%s" file-name (car mode-and-masks))
305 mode-and-masks))
314 (let* ((init-f (nth 0 (flymake-get-file-name-mode-and-masks fil
[all...]
/macosx-10.10/apr-32/apr-util/apr-util/dbm/sdbm/
H A Dsdbm.c56 static const long masks[] = { variable
459 db->hmask = masks[hbit];
/macosx-10.10/tcl-105/tcl_ext/xotcl/xotcl/library/store/XOTclSdbm/
H A Dsdbm.c81 static long masks[] = { variable
433 db->hmask = masks[hbit];
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dcontrols.c451 * Return a list of OIDs and operation masks for supported
460 slap_mask_t *masks; local
479 masks = (slap_mask_t *)SLAP_MALLOC( (n + 1) * sizeof(slap_mask_t) );
480 if ( masks == NULL ) {
489 masks[n] = sc->sc_mask;
493 masks[n] = 0;
496 *ctrlmasks = masks;
/macosx-10.10/network_cmds-457/ipfw.tproj/
H A Dipfw2.c698 * This effectively works on masks in big-endian (network) format.
1600 uint32_t set_disable, masks[2]; local
1646 masks[0] = (4 << 24) | (new_set << 16) | (rulenum);
1649 rule.set_masks[0] = masks[0];
1669 masks[0] = (cmd << 24) | (new_set << 16) | (rulenum);
1672 rule.set_masks[0] = masks[0];
1681 masks[0] = masks[1] = 0;
1689 masks[which] |= (1<<i);
1699 if ( (masks[
[all...]

Completed in 196 milliseconds

12