/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.mers/ |
D | values.pass.cpp | 46 void where(const T &) {} in where() function 73 where(E::word_size); in test1() 74 where(E::state_size); in test1() 75 where(E::shift_size); in test1() 76 where(E::mask_bits); in test1() 77 where(E::xor_mask); in test1() 78 where(E::tempering_u); in test1() 79 where(E::tempering_d); in test1() 80 where(E::tempering_s); in test1() 81 where(E::tempering_b); in test1() [all …]
|
/external/pcre/dist2/src/ |
D | pcre2_config.c | 77 pcre2_config(uint32_t what, void *where) in pcre2_config() argument 79 if (where == NULL) /* Requests a length */ in pcre2_config() 113 *((uint32_t *)where) = PCRE2_BSR_ANYCRLF; in pcre2_config() 115 *((uint32_t *)where) = PCRE2_BSR_UNICODE; in pcre2_config() 121 *((uint32_t *)where) = 1; in pcre2_config() 123 *((uint32_t *)where) = 0; in pcre2_config() 131 return (int)(1 + ((where == NULL)? in pcre2_config() 132 strlen(v) : PRIV(strcpy_c8)((PCRE2_UCHAR *)where, v))); in pcre2_config() 139 *((uint32_t *)where) = (uint32_t)configured_link_size; in pcre2_config() 143 *((uint32_t *)where) = MATCH_LIMIT; in pcre2_config() [all …]
|
D | pcre2_pattern_info.c | 65 pcre2_pattern_info(const pcre2_code *code, uint32_t what, void *where) in pcre2_pattern_info() argument 69 if (where == NULL) /* Requests field length */ in pcre2_pattern_info() 121 *((uint32_t *)where) = re->overall_options; in pcre2_pattern_info() 125 *((uint32_t *)where) = re->compile_options; in pcre2_pattern_info() 129 *((uint32_t *)where) = re->top_backref; in pcre2_pattern_info() 133 *((uint32_t *)where) = re->bsr_convention; in pcre2_pattern_info() 137 *((uint32_t *)where) = re->top_bracket; in pcre2_pattern_info() 141 *((uint32_t *)where) = ((re->flags & PCRE2_FIRSTSET) != 0)? 1 : in pcre2_pattern_info() 146 *((uint32_t *)where) = ((re->flags & PCRE2_FIRSTSET) != 0)? in pcre2_pattern_info() 151 *((const uint8_t **)where) = ((re->flags & PCRE2_FIRSTMAPSET) != 0)? in pcre2_pattern_info() [all …]
|
/external/syslinux/gpxe/src/arch/x86/include/gpxe/ |
D | pcidirect.h | 26 extern void pcidirect_prepare ( struct pci_device *pci, int where ); 49 unsigned int where, in PCIAPI_INLINE() 51 pcidirect_prepare ( pci, where ); in PCIAPI_INLINE() 52 *value = inb ( PCIDIRECT_CONFIG_DATA + ( where & 3 ) ); in PCIAPI_INLINE() 66 unsigned int where, in PCIAPI_INLINE() 68 pcidirect_prepare ( pci, where ); in PCIAPI_INLINE() 69 *value = inw ( PCIDIRECT_CONFIG_DATA + ( where & 2 ) ); in PCIAPI_INLINE() 83 unsigned int where, in PCIAPI_INLINE() 85 pcidirect_prepare ( pci, where ); in PCIAPI_INLINE() 100 unsigned int where, in PCIAPI_INLINE() [all …]
|
D | pcibios.h | 45 unsigned int where, in PCIAPI_INLINE() 50 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_BYTE | where, &tmp ); in PCIAPI_INLINE() 65 unsigned int where, in PCIAPI_INLINE() 70 rc = pcibios_read ( pci, PCIBIOS_READ_CONFIG_WORD | where, &tmp ); in PCIAPI_INLINE() 85 unsigned int where, in PCIAPI_INLINE() 87 return pcibios_read ( pci, PCIBIOS_READ_CONFIG_DWORD | where, value ); in PCIAPI_INLINE() 100 unsigned int where, in PCIAPI_INLINE() 102 return pcibios_write ( pci, PCIBIOS_WRITE_CONFIG_BYTE | where, value ); in PCIAPI_INLINE() 115 unsigned int where, in PCIAPI_INLINE() 117 return pcibios_write ( pci, PCIBIOS_WRITE_CONFIG_WORD | where, value ); in PCIAPI_INLINE() [all …]
|
/external/valgrind/memcheck/tests/ |
D | mempool.c | 16 char *where; member 24 char *where; member 39 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE, in make_pool() 44 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE); in make_pool() 49 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE); in make_pool() 65 l->where = p->where; in push() 66 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0); in push() 74 VALGRIND_DESTROY_MEMPOOL(l->where); in pop() 75 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where); in pop() 76 p->where = l->where; in pop() [all …]
|
D | mempool2.c | 19 char *where; member 27 char *where; member 42 p->where = p->mem = (char *)mmap(NULL, SUPERBLOCK_SIZE, in make_pool() 47 p->where = p->mem = (char *)malloc(SUPERBLOCK_SIZE); in make_pool() 52 (void) VALGRIND_MAKE_MEM_NOACCESS(p->where, SUPERBLOCK_SIZE); in make_pool() 68 l->where = p->where; in push() 69 VALGRIND_CREATE_MEMPOOL(l->where, REDZONE_SIZE, 0); in push() 77 VALGRIND_DESTROY_MEMPOOL(l->where); in pop() 78 (void) VALGRIND_MAKE_MEM_NOACCESS(l->where, p->where-l->where); in pop() 79 p->where = l->where; in pop() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | BreakIterator.java | 563 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument 565 return getBreakInstance(ULocale.forLocale(where), KIND_WORD); in getWordInstance() 575 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument 577 return getBreakInstance(where, KIND_WORD); in getWordInstance() 600 public static BreakIterator getLineInstance(Locale where) in getLineInstance() argument 602 return getBreakInstance(ULocale.forLocale(where), KIND_LINE); in getLineInstance() 613 public static BreakIterator getLineInstance(ULocale where) in getLineInstance() argument 615 return getBreakInstance(where, KIND_LINE); in getLineInstance() 638 public static BreakIterator getCharacterInstance(Locale where) in getCharacterInstance() argument 640 return getBreakInstance(ULocale.forLocale(where), KIND_CHARACTER); in getCharacterInstance() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | BreakIterator.java | 599 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument 601 return getBreakInstance(ULocale.forLocale(where), KIND_WORD); in getWordInstance() 612 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument 614 return getBreakInstance(where, KIND_WORD); in getWordInstance() 639 public static BreakIterator getLineInstance(Locale where) in getLineInstance() argument 641 return getBreakInstance(ULocale.forLocale(where), KIND_LINE); in getLineInstance() 653 public static BreakIterator getLineInstance(ULocale where) in getLineInstance() argument 655 return getBreakInstance(where, KIND_LINE); in getLineInstance() 680 public static BreakIterator getCharacterInstance(Locale where) in getCharacterInstance() argument 682 return getBreakInstance(ULocale.forLocale(where), KIND_CHARACTER); in getCharacterInstance() [all …]
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/ |
D | BreakIterator.java | 458 public static BreakIterator getWordInstance(Locale where) in getWordInstance() argument 460 return getBreakInstance(where, KIND_WORD); in getWordInstance() 470 public static BreakIterator getWordInstance(ULocale where) in getWordInstance() argument 472 return getBreakInstance(where.toLocale(), KIND_WORD); in getWordInstance() 496 public static BreakIterator getLineInstance(Locale where) in getLineInstance() argument 498 return getBreakInstance(where, KIND_LINE); in getLineInstance() 509 public static BreakIterator getLineInstance(ULocale where) in getLineInstance() argument 511 return getBreakInstance(where.toLocale(), KIND_LINE); in getLineInstance() 535 public static BreakIterator getCharacterInstance(Locale where) in getCharacterInstance() argument 537 return getBreakInstance(where, KIND_CHARACTER); in getCharacterInstance() [all …]
|
/external/guava/guava-tests/test/com/google/common/reflect/ |
D | TypeResolverTest.java | 40 assertEquals(String.class, new TypeResolver().where(t, String.class).resolveType(t)); in testWhere_typeVariableMapping() 47 new TypeResolver().where(t1, t2).where(t2, String.class).resolveType(t1)); in testWhere_indirectMapping() 53 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_typeVariableSelfMapping() 59 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_parameterizedSelfMapping() 65 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_genericArraySelfMapping() 71 resolver.where(String.class, String.class).resolveType(String.class)); in testWhere_rawClassSelfMapping() 77 assertEquals(t, resolver.where(t, t).resolveType(t)); in testWhere_wildcardSelfMapping() 82 TypeResolver resolver = new TypeResolver().where(t, String.class); in testWhere_duplicateMapping() 84 resolver.where(t, String.class); in testWhere_duplicateMapping() 92 assertEquals(t2, new TypeResolver().where(t1, t2).resolveType(t1)); in testWhere_recursiveMapping() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/ |
D | LocaleValidityChecker.java | 69 public boolean isValid(ULocale locale, Where where) { in isValid() argument 70 where.set(null, null); in isValid() 84 if (!isValid(Datatype.language, language, where)) { in isValid() 87 where.set(null, null); // for x, well-formed == valid in isValid() 92 if (!isValid(Datatype.script, script, where)) return false; in isValid() 93 if (!isValid(Datatype.region, region, where)) return false; in isValid() 96 if (!isValid(Datatype.variant, variant, where)) return false; in isValid() 107 if (!isValidU(locale, datatype, locale.getExtension(c), where)) return false; in isValid() 113 return where.set(Datatype.illegal, c+""); in isValid() 146 … private boolean isValidU(ULocale locale, Datatype datatype, String extensionString, Where where) { in isValidU() argument [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/locale/ |
D | LocaleValidityChecker.java | 71 public boolean isValid(ULocale locale, Where where) { in isValid() argument 72 where.set(null, null); in isValid() 86 if (!isValid(Datatype.language, language, where)) { in isValid() 89 where.set(null, null); // for x, well-formed == valid in isValid() 94 if (!isValid(Datatype.script, script, where)) return false; in isValid() 95 if (!isValid(Datatype.region, region, where)) return false; in isValid() 98 if (!isValid(Datatype.variant, variant, where)) return false; in isValid() 109 if (!isValidU(locale, datatype, locale.getExtension(c), where)) return false; in isValid() 115 return where.set(Datatype.illegal, c+""); in isValid() 148 … private boolean isValidU(ULocale locale, Datatype datatype, String extensionString, Where where) { in isValidU() argument [all …]
|
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 796 static byte[] insertGapCore0(byte[] code, int where, int gapLength, in insertGapCore0() argument 804 return insertGapCore1(code, where, gapLength, exclusive, etable, ca); in insertGapCore0() 808 return insertGapCore1(code, where, (gapLength + 3) & ~3, in insertGapCore0() 817 private static byte[] insertGapCore1(byte[] code, int where, int gapLength, in insertGapCore1() argument 824 insertGap2(code, where, gapLength, codeLength, newcode, exclusive); in insertGapCore1() 825 etable.shiftPc(where, gapLength, exclusive); in insertGapCore1() 829 na.shiftPc(where, gapLength, exclusive); in insertGapCore1() 834 va.shiftPc(where, gapLength, exclusive); in insertGapCore1() 840 vta.shiftPc(where, gapLength, exclusive); in insertGapCore1() 844 smt.shiftPc(where, gapLength, exclusive); in insertGapCore1() [all …]
|
/external/autotest/tko/ |
D | db.py | 225 def _where_clause(self, where): argument 226 if not where: 229 if isinstance(where, dict): 232 for field, value in where.iteritems(): 240 elif isinstance(where, basestring): 242 where_clause = where 244 elif isinstance(where, tuple): 246 where_clause, values = where 249 raise ValueError('Invalid "where" value: %r' % where) 255 def select(self, fields, table, where, distinct=False, group_by=None, argument [all …]
|
D | frontend.py | 73 def get_matrix_data(db_obj, x_axis, y_axis, where = None, argument 89 where=where, group_by=group_by, max_rows = MAX_RECORDS) 156 def tests(self, where = {}): argument 160 for key in where.keys(): 162 values.append(where[key]) 168 def select(klass, db, where = {}): argument 171 for row in db.select(','.join(fields), 'tko_machines', where): 186 def select(klass, db, where = {}): argument 188 rows = db.select(','.join(fields), 'tko_kernels', where) 203 def select(klass, db, where={}, distinct=False): argument [all …]
|
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/testing/ |
D | Pony.java | 12 public String ride(String where) { in ride() argument 13 return "Whinny! You're on my " + where + "!"; in ride() 16 public static String prance(String where) { in prance() argument 17 return "I'm prancing to " + where + "!"; in prance() 20 public String saunter(String where) { in saunter() argument 21 return "Off I saunter to " + where + "!"; in saunter() 27 public String ride(String where) { in ride() argument 28 return "Fake whinny! You're on my " + where + "!"; in ride() 32 protected static String prance(String where) { in prance() argument 33 return "I'm shadily prancing to " + where + "!"; in prance()
|
/external/syslinux/gpxe/src/include/gpxe/efi/ |
D | efi_pci.h | 56 unsigned int where, in PCIAPI_INLINE() 59 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_BYTE ), in PCIAPI_INLINE() 73 unsigned int where, in PCIAPI_INLINE() 76 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_WORD ), in PCIAPI_INLINE() 90 unsigned int where, in PCIAPI_INLINE() 93 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_DWORD ), in PCIAPI_INLINE() 107 unsigned int where, in PCIAPI_INLINE() 110 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_BYTE ), in PCIAPI_INLINE() 124 unsigned int where, in PCIAPI_INLINE() 127 EFIPCI_LOCATION ( where, EFIPCI_WIDTH_WORD ), in PCIAPI_INLINE() [all …]
|
/external/libcxx/test/std/re/re.regex/re.regex.const/ |
D | constants.pass.cpp | 33 void where(const T &) {} in where() function 50 where(BR::icase); in test() 51 where(BR::nosubs); in test() 52 where(BR::optimize); in test() 53 where(BR::collate); in test() 54 where(BR::ECMAScript); in test() 55 where(BR::basic); in test() 56 where(BR::extended); in test() 57 where(BR::awk); in test() 58 where(BR::grep); in test() [all …]
|
/external/libunwind/src/x86_64/ |
D | Gstash_frame.c | 37 rs->reg[DWARF_CFA_REG_COLUMN].where, in tdep_stash_frame() 41 rs->reg[RBP].where, rs->reg[RBP].val, DWARF_GET_LOC(d->loc[RBP]), in tdep_stash_frame() 42 rs->reg[RSP].where, rs->reg[RSP].val, DWARF_GET_LOC(d->loc[RSP])); in tdep_stash_frame() 50 && (rs->reg[DWARF_CFA_REG_COLUMN].where == DWARF_WHERE_REG) in tdep_stash_frame() 55 && (rs->reg[RBP].where == DWARF_WHERE_UNDEF in tdep_stash_frame() 56 || rs->reg[RBP].where == DWARF_WHERE_SAME in tdep_stash_frame() 57 || (rs->reg[RBP].where == DWARF_WHERE_CFAREL in tdep_stash_frame() 60 && (rs->reg[RSP].where == DWARF_WHERE_UNDEF in tdep_stash_frame() 61 || rs->reg[RSP].where == DWARF_WHERE_SAME in tdep_stash_frame() 62 || (rs->reg[RSP].where == DWARF_WHERE_CFAREL in tdep_stash_frame() [all …]
|
/external/libcxx/test/std/numerics/rand/rand.eng/rand.eng.sub/ |
D | values.pass.cpp | 34 void where(const T &) {} in where() function 51 where(E::word_size); in test1() 52 where(E::short_lag); in test1() 53 where(E::long_lag); in test1() 54 where(E::default_seed); in test1() 72 where(E::word_size); in test2() 73 where(E::short_lag); in test2() 74 where(E::long_lag); in test2() 75 where(E::default_seed); in test2()
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | ilist.h | 241 iterator insert(iterator where, pointer New) { 243 return base_list_type::insert(where, *New); 246 iterator insert(iterator where, const_reference New) { 247 return this->insert(where, new value_type(New)); 250 iterator insertAfter(iterator where, pointer New) { 254 return insert(++where, New); 280 iterator erase(iterator where) { 281 this->deleteNode(remove(where)); 282 return where; 337 template<class InIt> void insert(iterator where, InIt first, InIt last) { [all …]
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES3/ |
D | PVRTgles3Ext.cpp | 77 GLubyte *where, *terminator; in IsGLExtensionSupported() local 80 where = (GLubyte *) strchr(extension, ' '); in IsGLExtensionSupported() 81 if (where || *extension == '\0') in IsGLExtensionSupported() 90 where = (GLubyte *) strstr((const char *) start, extension); in IsGLExtensionSupported() 91 if (!where) in IsGLExtensionSupported() 93 terminator = where + strlen(extension); in IsGLExtensionSupported() 94 if (where == start || *(where - 1) == ' ') in IsGLExtensionSupported()
|
/external/icu/icu4c/source/tools/icupkg/ |
D | icupkg.cpp | 56 FILE *where=isHelp ? stdout : stderr; in printUsage() local 58 fprintf(where, in printUsage() 66 fprintf(where, in printUsage() 75 fprintf(where, in printUsage() 82 fprintf(where, in printUsage() 90 fprintf(where, in printUsage() 96 fprintf(where, in printUsage() 105 fprintf(where, in printUsage() 113 fprintf(where, in printUsage() 117 fprintf(where, in printUsage() [all …]
|
/external/syslinux/com32/modules/ |
D | pmload.c | 61 int boot_raw(void *ptr, size_t len, addr_t where, char **argv) in boot_raw() argument 87 dprintf("Segment at 0x%08x len 0x%08x\n", where, len); in boot_raw() 89 if (syslinux_memmap_type(amap, where, len) != SMT_FREE) { in boot_raw() 91 where, len); in boot_raw() 96 if (syslinux_add_memmap(&amap, where, len, SMT_ALLOC)) in boot_raw() 100 if (syslinux_add_movelist(&ml, where, (addr_t) ptr, len)) in boot_raw() 169 regs.eip = where; in boot_raw() 199 addr_t where; in main() local 206 where = strtoul(argv[2], NULL, 0); in main() 213 boot_raw(data, data_len, where, &argv[1]); in main()
|