Searched refs:probe (Results 1 - 25 of 99) sorted by relevance

1234

/external/webkit/Source/JavaScriptCore/runtime/
H A DTracing.d28 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/icu4c/layout/
H A DLookupTables.cpp30 le_int16 probe = SWAPW(searchRange); local
40 while (probe > unity) {
41 probe >>= 1;
42 trial = (const LookupSegment *) ((char *) entry + probe);
59 le_int16 probe = SWAPW(searchRange); local
69 while (probe > unity) {
70 probe >>= 1;
71 trial = (const LookupSingle *) ((char *) entry + probe);
H A DOpenTypeUtilities.cpp59 le_int32 probe = power; local
66 while (probe > (1 << 0)) {
67 probe >>= 1;
69 if (SWAPT(records[index + probe].tag) <= tag) {
70 index += probe;
86 le_int32 probe = power; local
97 while (probe > (1 << 0)) {
98 probe >>= 1;
100 if (SWAPW(records[range + probe].firstGlyph) <= glyphID) {
101 range += probe;
116 le_int32 probe = power; local
138 le_int32 probe = power; local
[all...]
H A DCoverageTables.cpp48 le_uint16 probe = power; local
59 while (probe > (1 << 0)) {
60 probe >>= 1;
62 if (SWAPW(glyphArray[index + probe]) <= ttGlyphID) {
63 index += probe;
H A DKernTable.cpp197 le_uint32 probe = searchRange; local
199 while (probe > KERN_PAIRINFO_SIZE) {
200 probe >>= 1;
201 tp = (const PairInfo*)((char*)p + probe);
H A DPairPositioningSubtables.cpp146 le_uint16 probe = power * recordSize;
154 while (probe > recordSize) {
155 probe >>= 1;
156 trial = (const PairValueRecord *) ((char *) record + probe);
/external/e2fsprogs/lib/blkid/
H A Dprobe.c2 * probe.c - identify a block device by its contents, and return a dev
37 #include "probe.h"
322 static int probe_ext4dev(struct blkid_probe *probe, argument
363 get_ext2_info(probe->dev, id, buf);
367 static int probe_ext4(struct blkid_probe *probe, struct blkid_magic *id, argument
411 get_ext2_info(probe->dev, id, buf);
415 static int probe_ext3(struct blkid_probe *probe, struct blkid_magic *id, argument
433 get_ext2_info(probe->dev, id, buf);
437 static int probe_ext2(struct blkid_probe *probe, struct blkid_magic *id, argument
465 get_ext2_info(probe
469 probe_jbd(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
514 probe_fat(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
641 probe_fat_nomagic(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
682 probe_ntfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
790 probe_xfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
806 probe_reiserfs(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
834 probe_reiserfs4(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
850 probe_jfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
876 probe_zfs(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
890 probe_luks(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
903 probe_romfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
918 probe_cramfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
933 probe_swap0(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf __BLKID_ATTR((unused))) argument
942 probe_swap1(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf __BLKID_ATTR((unused))) argument
975 probe_iso9660(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
995 probe_udf(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf __BLKID_ATTR((unused))) argument
1038 probe_ocfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1061 probe_ocfs2(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1074 probe_oracleasm(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1086 probe_gfs(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1108 probe_gfs2(struct blkid_probe *probe, struct blkid_magic *id __BLKID_ATTR((unused)), unsigned char *buf) argument
1183 probe_hfsplus(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
1324 probe_lvm2(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
1371 probe_btrfs(struct blkid_probe *probe, struct blkid_magic *id, unsigned char *buf) argument
1500 struct blkid_probe probe; local
[all...]
H A DAndroid.mk10 probe.c \
/external/icu4c/layoutex/
H A DLXUtilities.cpp57 le_int32 probe = power; local
64 while (probe > (1 << 0)) {
65 probe >>= 1;
67 if (value >= array[index + probe]) {
68 index += probe;
/external/webkit/Source/WebCore/html/parser/
H A DHTMLEntitySearch.cpp73 const HTMLEntityTableEntry* probe = halfway(left, right); local
74 result = compare(probe, nextCharacter);
76 left = probe;
79 right = probe;
98 const HTMLEntityTableEntry* probe = halfway(left, right); local
99 result = compare(probe, nextCharacter);
101 right = probe;
104 left = probe;
/external/icu4c/samples/layout/
H A Dcmaps.cpp131 le_uint16 probe = 1 << fEntrySelector; local
138 while (probe > (1 << 0)) {
139 probe >>= 1;
141 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
142 index += probe;
180 le_int32 probe = fPower; local
187 while (probe > (1 << 0)) {
188 probe >>= 1;
190 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
191 range += probe;
[all...]
/external/icu4c/test/letest/
H A Dcmaps.cpp125 le_uint16 probe = 1 << fEntrySelector; local
132 while (probe > (1 << 0)) {
133 probe >>= 1;
135 if (SWAPU16(fStartCodes[index + probe]) <= unicode) {
136 index += probe;
174 le_int32 probe = fPower; local
181 while (probe > (1 << 0)) {
182 probe >>= 1;
184 if (SWAPU32(fGroups[range + probe].startCharCode) <= unicode32) {
185 range += probe;
[all...]
H A DFontObject.cpp63 le_uint16 probe = 1 << entrySelector; local
69 while (probe > (1 << 0)) {
70 probe >>= 1;
72 if (SWAPL(directory->tableDirectory[table + probe].tag) <= tag) {
73 table += probe;
161 le_uint16 probe = 1 << cmEntrySelector; local
168 while (probe > (1 << 0)) {
169 probe >>= 1;
171 if (SWAPW(cmStartCodes[index + probe]) <= unicode) {
172 index += probe;
[all...]
/external/bison/src/
H A Dmuscle_tab.c103 muscle_entry probe; local
106 probe.key = key;
107 entry = hash_lookup (muscle_table, &probe);
129 muscle_entry probe; local
132 probe.key = key;
133 entry = hash_lookup (muscle_table, &probe);
204 muscle_entry probe; local
207 probe.key = key;
208 result = hash_lookup (muscle_table, &probe);
H A Dstate.c345 state *probe = xmalloc (offsetof (state, items) + items_size); local
348 probe->nitems = nitems;
349 memcpy (probe->items, core, items_size);
350 entry = hash_lookup (state_table, probe);
351 free (probe);
/external/chromium/third_party/libjingle/source/talk/base/
H A Dautodetectproxy.cc121 std::string probe; local
125 probe.assign("CONNECT www.google.com:443 HTTP/1.0\r\n"
127 probe.append(agent_);
128 probe.append("\r\n"
135 probe.assign("\005\001\000", 3);
143 << " sending " << probe.size() << " bytes";
144 socket_->Send(probe.data(), probe.size());
/external/bluetooth/bluez/health/
H A Dhdp_manager.c59 .probe = hdp_adapter_probe,
76 .probe = hdp_driver_probe,
/external/oprofile/libabi/
H A Dop_abi.c69 unsigned int probe = 0xff; local
71 unsigned char * probe_byte = (unsigned char *)&probe;
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
H A Dalloca.c144 auto char probe; /* probes stack depth: */ local
145 register char *depth = &probe;
/external/icu4c/extra/scrptrun/
H A Dscrptrun.cpp85 int32_t probe = pairedCharPower; local
92 while (probe > (1 << 0)) {
93 probe >>= 1;
95 if (ch >= pairedChars[index + probe]) {
96 index += probe;
/external/bluetooth/bluez/network/
H A Dmanager.c148 .probe = panu_probe,
155 .probe = gn_probe,
162 .probe = nap_probe,
168 .probe = network_server_probe,
/external/bluetooth/bluez/sap/
H A Dmanager.c66 .probe = sap_server_probe,
/external/bluetooth/bluez/input/
H A Dmanager.c157 .probe = hid_device_probe,
164 .probe = headset_probe,
170 .probe = hid_server_probe,
/external/bluetooth/bluez/serial/
H A Dmanager.c132 .probe = port_probe,
156 .probe = proxy_probe,
/external/dnsmasq/contrib/Suse/
H A Drc.dnsmasq-suse70 probe)
74 echo "Usage: $0 {start|stop|status|try-restart|restart|force-reload|reload|probe}"

Completed in 1284 milliseconds

1234