/external/icu4c/layout/ |
D | OpenTypeUtilities.cpp | 59 le_int32 probe = power; in getTagOffset() local 66 while (probe > (1 << 0)) { in getTagOffset() 67 probe >>= 1; in getTagOffset() 69 if (SWAPT(records[index + probe].tag) <= tag) { in getTagOffset() 70 index += probe; in getTagOffset() 86 le_int32 probe = power; in getGlyphRangeIndex() local 97 while (probe > (1 << 0)) { in getGlyphRangeIndex() 98 probe >>= 1; in getGlyphRangeIndex() 100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) { in getGlyphRangeIndex() 101 range += probe; in getGlyphRangeIndex() [all …]
|
D | LookupTables.cpp | 30 le_int16 probe = SWAPW(searchRange); in lookupSegment() local 40 while (probe > unity) { in lookupSegment() 41 probe >>= 1; in lookupSegment() 42 trial = (const LookupSegment *) ((char *) entry + probe); in lookupSegment() 59 le_int16 probe = SWAPW(searchRange); in lookupSingle() local 69 while (probe > unity) { in lookupSingle() 70 probe >>= 1; in lookupSingle() 71 trial = (const LookupSingle *) ((char *) entry + probe); in lookupSingle()
|
D | CoverageTables.cpp | 48 le_uint16 probe = power; in getGlyphCoverage() local 59 while (probe > (1 << 0)) { in getGlyphCoverage() 60 probe >>= 1; in getGlyphCoverage() 62 if (SWAPW(glyphArray[index + probe]) <= ttGlyphID) { in getGlyphCoverage() 63 index += probe; in getGlyphCoverage()
|
D | KernTable.cpp | 197 le_uint32 probe = searchRange; in process() local 199 while (probe > KERN_PAIRINFO_SIZE) { in process() 200 probe >>= 1; in process() 201 tp = (const PairInfo*)((char*)p + probe); in process()
|
D | PairPositioningSubtables.cpp | 146 le_uint16 probe = power * recordSize; in findPairValueRecord() 154 while (probe > recordSize) { in findPairValueRecord() 155 probe >>= 1; in findPairValueRecord() 156 trial = (const PairValueRecord *) ((char *) record + probe); in findPairValueRecord()
|
/external/e2fsprogs/lib/blkid/ |
D | probe.c | 322 static int probe_ext4dev(struct blkid_probe *probe, in probe_ext4dev() argument 363 get_ext2_info(probe->dev, id, buf); in probe_ext4dev() 367 static int probe_ext4(struct blkid_probe *probe, struct blkid_magic *id, in probe_ext4() argument 411 get_ext2_info(probe->dev, id, buf); in probe_ext4() 415 static int probe_ext3(struct blkid_probe *probe, struct blkid_magic *id, in probe_ext3() argument 433 get_ext2_info(probe->dev, id, buf); in probe_ext3() 437 static int probe_ext2(struct blkid_probe *probe, struct blkid_magic *id, in probe_ext2() argument 465 get_ext2_info(probe->dev, id, buf); in probe_ext2() 469 static int probe_jbd(struct blkid_probe *probe, struct blkid_magic *id, in probe_jbd() argument 478 get_ext2_info(probe->dev, id, buf); in probe_jbd() [all …]
|
D | Makefile.in | 21 OBJS= cache.o dev.o devname.o devno.o getsize.o llseek.o probe.o \ 25 $(srcdir)/getsize.c $(srcdir)/llseek.c $(srcdir)/probe.c \ 98 tst_probe: $(srcdir)/probe.c $(DEPLIBS_BLKID) 100 $(Q) $(CC) -o tst_probe -DTEST_PROGRAM $(srcdir)/probe.c $(LIBS_BLKID) $(ALL_CFLAGS) 204 probe.o: $(srcdir)/probe.c $(srcdir)/list.h $(srcdir)/probe.h
|
/external/icu4c/test/letest/ |
D | cmaps.cpp | 125 le_uint16 probe = 1 << fEntrySelector; in unicodeToGlyph() local 132 while (probe > (1 << 0)) { in unicodeToGlyph() 133 probe >>= 1; in unicodeToGlyph() 135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) { in unicodeToGlyph() 136 index += probe; in unicodeToGlyph() 174 le_int32 probe = fPower; in unicodeToGlyph() local 181 while (probe > (1 << 0)) { in unicodeToGlyph() 182 probe >>= 1; in unicodeToGlyph() 184 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph() 185 range += probe; in unicodeToGlyph()
|
D | FontObject.cpp | 63 le_uint16 probe = 1 << entrySelector; in findTable() local 69 while (probe > (1 << 0)) { in findTable() 70 probe >>= 1; in findTable() 72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) { in findTable() 73 table += probe; in findTable() 161 le_uint16 probe = 1 << cmEntrySelector; in unicodeToGlyph() local 168 while (probe > (1 << 0)) { in unicodeToGlyph() 169 probe >>= 1; in unicodeToGlyph() 171 if (SWAPW(cmStartCodes[index + probe]) <= unicode) { in unicodeToGlyph() 172 index += probe; in unicodeToGlyph()
|
D | PortableFontInstance.cpp | 190 le_uint16 probe = fDirPower; in findTable() local 196 while (probe > (1 << 0)) { in findTable() 197 probe >>= 1; in findTable() 199 if (SWAPL(fDirectory->tableDirectory[table + probe].tag) <= tag) { in findTable() 200 table += probe; in findTable()
|
/external/icu4c/samples/layout/ |
D | cmaps.cpp | 131 le_uint16 probe = 1 << fEntrySelector; in unicodeToGlyph() local 138 while (probe > (1 << 0)) { in unicodeToGlyph() 139 probe >>= 1; in unicodeToGlyph() 141 if (SWAPU16(fStartCodes[index + probe]) <= unicode) { in unicodeToGlyph() 142 index += probe; in unicodeToGlyph() 180 le_int32 probe = fPower; in unicodeToGlyph() local 187 while (probe > (1 << 0)) { in unicodeToGlyph() 188 probe >>= 1; in unicodeToGlyph() 190 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) { in unicodeToGlyph() 191 range += probe; in unicodeToGlyph()
|
/external/bison/src/ |
D | muscle_tab.c | 103 muscle_entry probe; in muscle_insert() local 106 probe.key = key; in muscle_insert() 107 entry = hash_lookup (muscle_table, &probe); in muscle_insert() 129 muscle_entry probe; in muscle_grow() local 132 probe.key = key; in muscle_grow() 133 entry = hash_lookup (muscle_table, &probe); in muscle_grow() 204 muscle_entry probe; in muscle_find() local 207 probe.key = key; in muscle_find() 208 result = hash_lookup (muscle_table, &probe); in muscle_find()
|
D | state.c | 345 state *probe = xmalloc (offsetof (state, items) + items_size); in state_hash_lookup() local 348 probe->nitems = nitems; in state_hash_lookup() 349 memcpy (probe->items, core, items_size); in state_hash_lookup() 350 entry = hash_lookup (state_table, probe); in state_hash_lookup() 351 free (probe); in state_hash_lookup()
|
/external/webkit/Source/WebCore/html/parser/ |
D | HTMLEntitySearch.cpp | 73 const HTMLEntityTableEntry* probe = halfway(left, right); in findFirst() local 74 result = compare(probe, nextCharacter); in findFirst() 76 left = probe; in findFirst() 79 right = probe; in findFirst() 98 const HTMLEntityTableEntry* probe = halfway(left, right); in findLast() local 99 result = compare(probe, nextCharacter); in findLast() 101 right = probe; in findLast() 104 left = probe; in findLast()
|
/external/webkit/Source/JavaScriptCore/runtime/ |
D | Tracing.d | 28 probe gc__begin(); 29 probe gc__marked(); 30 probe gc__end(); 32 probe profile__will_execute(int, char*, char*, int); 33 probe profile__did_execute(int, char*, char*, int);
|
/external/chromium/third_party/libjingle/source/talk/base/ |
D | autodetectproxy.cc | 121 std::string probe; in OnConnectEvent() local 125 probe.assign("CONNECT www.google.com:443 HTTP/1.0\r\n" in OnConnectEvent() 127 probe.append(agent_); in OnConnectEvent() 128 probe.append("\r\n" in OnConnectEvent() 135 probe.assign("\005\001\000", 3); in OnConnectEvent() 143 << " sending " << probe.size() << " bytes"; in OnConnectEvent() 144 socket_->Send(probe.data(), probe.size()); in OnConnectEvent()
|
/external/icu4c/layoutex/ |
D | LXUtilities.cpp | 57 le_int32 probe = power; in search() local 64 while (probe > (1 << 0)) { in search() 65 probe >>= 1; in search() 67 if (value >= array[index + probe]) { in search() 68 index += probe; in search()
|
/external/icu4c/extra/scrptrun/ |
D | scrptrun.cpp | 85 int32_t probe = pairedCharPower; in getPairIndex() local 92 while (probe > (1 << 0)) { in getPairIndex() 93 probe >>= 1; in getPairIndex() 95 if (ch >= pairedChars[index + probe]) { in getPairIndex() 96 index += probe; in getPairIndex()
|
/external/bluetooth/bluez/network/ |
D | manager.c | 148 .probe = panu_probe, 155 .probe = gn_probe, 162 .probe = nap_probe, 168 .probe = network_server_probe,
|
/external/v8/src/ |
D | stub-cache.cc | 1006 Object* probe = GetProbeValue(isolate, flags); in ProbeCache() local 1007 if (probe != heap->undefined_value()) return probe; in ProbeCache() 1018 return probe; in ProbeCache() 1067 Object* probe; in ComputeCallInitialize() local 1069 if (!maybe_probe->ToObject(&probe)) return maybe_probe; in ComputeCallInitialize() 1071 if (!probe->IsUndefined()) return probe; in ComputeCallInitialize() 1116 Object* probe; in ComputeCallPreMonomorphic() local 1118 if (!maybe_probe->ToObject(&probe)) return maybe_probe; in ComputeCallPreMonomorphic() 1120 if (!probe->IsUndefined()) return probe; in ComputeCallPreMonomorphic() 1135 Object* probe; in ComputeCallNormal() local [all …]
|
/external/icu4c/common/ |
D | usc_impl.c | 163 int32_t probe = pairedCharPower; in getPairIndex() local 170 while (probe > (1 << 0)) { in getPairIndex() 171 probe >>= 1; in getPairIndex() 173 if (ch >= pairedChars[pairIndex + probe]) { in getPairIndex() 174 pairIndex += probe; in getPairIndex()
|
D | uvectr32.cpp | 306 int32_t probe = (min + max) / 2; in sortedInsert() local 309 if (elements[probe] > tok) { in sortedInsert() 310 max = probe; in sortedInsert() 313 min = probe + 1; in sortedInsert()
|
/external/bluetooth/bluez/health/ |
D | hdp_manager.c | 59 .probe = hdp_adapter_probe, 76 .probe = hdp_driver_probe,
|
/external/bluetooth/bluez/input/ |
D | manager.c | 157 .probe = hid_device_probe, 164 .probe = headset_probe, 170 .probe = hid_server_probe,
|
/external/oprofile/libabi/ |
D | op_abi.c | 69 unsigned int probe = 0xff; in op_little_endian() local 71 unsigned char * probe_byte = (unsigned char *)&probe; in op_little_endian()
|