HomeSort by relevance Sort by last modified time
    Searched refs:masks (Results 1 - 25 of 27) sorted by null

1 2

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/os/
FileUtils.java 120 int[] masks = {S_IRUSR, S_IWUSR, S_IXUSR, S_IRGRP, S_IWGRP, S_IXGRP, local
122 for (int i = 0; i < masks.length; i++) {
123 if (!hasModeFlag(mode, masks[i])) {
  /external/freetype/src/pshinter/
pshrec.h 108 /* masks and counters table descriptor */
113 PS_Mask masks; member in struct:PS_Mask_TableRec_
122 PS_Mask_TableRec masks; member in struct:PS_DimensionRec_
pshrec.c 219 PS_Mask mask = table->masks;
225 FT_FREE( table->masks );
231 /* ensure that a mask table can contain "count" masks */
245 if ( !FT_RENEW_ARRAY( table->masks, old_max, new_max ) )
273 mask = table->masks + count - 1;
303 mask = table->masks + count - 1;
372 /* test whether two masks in a table intersect */
378 PS_Mask mask1 = table->masks + index1;
379 PS_Mask mask2 = table->masks + index2;
404 /* merge two masks, used by ps_mask_table_merge_all *
    [all...]
pshalgo.c 215 /* activate the hints that are given by the initial hint masks */
218 PS_Mask mask = hint_masks->masks;
234 FT_TRACE0(( "psh_hint_table_init: missing/incorrect hint masks\n" ));
    [all...]
  /external/tcpdump/
print-cnfp.c 77 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);
  /external/chromium/third_party/icu/source/i18n/
rbt_rule.h 60 // 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(const TransliterationRule& r2) const
    [all...]