Searched refs:mid (Results 1 - 25 of 320) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/zopfli/src/zopflipng/lodepng/
H A Dlodepng.cpp1306 size_t mid = (left + right) / 2; local
1307 if(array[mid] <= value) left = mid + 1; /*the value to find is more to the right*/
1308 else if(array[mid - 1] > value) right = mid - 1; /*the value to find is more to the left*/
1309 else return mid - 1;
/external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
H A Dpeers.cpp416 name = (*it).mid(pos);
418 name = (*it).mid(pos);
534 addr = str.mid(pos);
536 dev_type = str.mid(pos);
600 bssid = (*it).mid(pos);
602 id = (*it).mid(pos).toInt();
604 flags = (*it).mid(pos);
606 ssid = (*it).mid(pos);
608 wps_name = (*it).mid(pos);
610 pri_dev_type = (*it).mid(po
[all...]
H A Dscanresults.cpp87 bssid = (*it).mid(pos);
89 freq = (*it).mid(pos);
91 signal = (*it).mid(pos);
93 flags = (*it).mid(pos);
95 ssid = (*it).mid(pos);
H A Dwpagui.cpp1386 msg.append("BSSID:\t" + (*it).mid(pos) + "\n");
1388 msg.append("SSID: \t" + (*it).mid(pos) + "\n");
1390 msg.append("PAIR: \t" + (*it).mid(pos) + "\n");
1392 msg.append("GROUP:\t" + (*it).mid(pos) + "\n");
1394 msg.append("AUTH: \t" + (*it).mid(pos) + "\n");
1396 msg.append("STATE:\t" + (*it).mid(pos) + "\n");
1398 msg.append("IP: \t" + (*it).mid(pos) + "\n");
1400 msg.append("PAE: \t" + (*it).mid(pos) + "\n");
1402 msg.append("EAP: \t" + (*it).mid(pos) + "\n");
/external/valgrind/main/perf/
H A Dbz2.c1459 Int32 nb, na, mid; local
1463 mid = (nb + na) >> 1;
1464 if (indx >= cftab[mid]) nb = mid; else na = mid;
H A Dtest_input_for_tinycc.c1416 Int32 nb, na, mid; local
1420 mid = (nb + na) >> 1;
1421 if (indx >= cftab[mid]) nb = mid; else na = mid;
/external/valgrind/main/tests/
H A Dvg_regtest373 my ($fullname, $name, $mid, $f_exps) = @_;
391 mysystem("diff -u $f_exp $name.$mid.out > $name.$mid.diff$n");
393 if (not -s "$name.$mid.diff$n") {
395 unlink("$name.$mid.out");
396 unlink(<$name.$mid.diff*>);
402 print "*** $name failed ($mid) ***\n";
403 push(@failures, sprintf("%-40s ($mid)", "$fullname"));
404 $num_failures{$mid}++;
H A Dvg_regtest.in373 my ($fullname, $name, $mid, $f_exps) = @_;
391 mysystem("@DIFF@ $f_exp $name.$mid.out > $name.$mid.diff$n");
393 if (not -s "$name.$mid.diff$n") {
395 unlink("$name.$mid.out");
396 unlink(<$name.$mid.diff*>);
402 print "*** $name failed ($mid) ***\n";
403 push(@failures, sprintf("%-40s ($mid)", "$fullname"));
404 $num_failures{$mid}++;
/external/webp/src/enc/
H A Danalysis.c78 int mid) {
90 assert(mid <= max && mid >= min);
92 const int alpha = 255 * (centers[n] - mid) / (max - min);
76 SetSegmentAlphas(VP8Encoder* const enc, const int centers[NUM_MB_SEGMENTS], int mid) argument
/external/valgrind/main/VEX/priv/
H A Dguest_ppc_toIR.c18430 Int low, mid, high; local
18434 mid = (low + high)/2;
18435 if (opcode < vsx_all[mid].opcode)
18436 high = mid - 1;
18437 else if (opcode > vsx_all[mid].opcode)
18438 low = mid + 1;
18440 return mid;
H A Dguest_x86_helpers.c2598 UInt mid = 0xFF & (UInt)ent->LdtEnt.Bits.BaseMid; local
2600 return (hi << 24) | (mid << 16) | lo;
/external/valgrind/main/VEX/switchback/
H A Dtest_bzip2.c1444 Int32 nb, na, mid; local
1448 mid = (nb + na) >> 1;
1449 if (indx >= cftab[mid]) nb = mid; else na = mid;
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c1153 Int mid, local
1162 mid = (lo + hi) / 2;
1163 a_mid_lo = nsegments[mid].start;
1164 a_mid_hi = nsegments[mid].end;
1166 if (a < a_mid_lo) { hi = mid-1; continue; }
1167 if (a > a_mid_hi) { lo = mid+1; continue; }
1169 aspacem_assert(0 <= mid && mid < nsegments_used);
1170 return mid;
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreaddwarf.c4176 Word mid, size, local
4182 mid = (lo + hi) / 2;
4183 a_mid_lo = di->cfsi[mid].base;
4184 size = di->cfsi[mid].len;
4188 hi = mid-1; continue;
4190 if (fde_initloc > a_mid_hi) { lo = mid+1; continue; }
H A Dstorage.c1846 Word mid, size, local
1852 mid = (lo + hi) / 2;
1853 a_mid_lo = di->symtab[mid].addr;
1855 ? di->symtab[mid].size
1857 a_mid_hi = ((Addr)di->symtab[mid].addr) + size - 1;
1859 if (ptr < a_mid_lo) { hi = mid-1; continue; }
1860 if (ptr > a_mid_hi) { lo = mid+1; continue; }
1864 if ( findText && di->symtab[mid].isText ) return mid;
1865 if ( (!findText) && (!di->symtab[mid]
1877 Word mid, local
1901 Word mid, size, local
1927 Word mid, size, local
[all...]
/external/valgrind/main/coregrind/
H A Dm_rangemap.c176 Word mid = (lo + hi) / 2; local
177 Range* mid_rng = (Range*)VG_(indexXA)(ranges, mid);
180 if (key < key_mid_min) { hi = mid-1; continue; }
181 if (key > key_mid_max) { lo = mid+1; continue; }
182 return mid;
H A Dm_xarray.c232 Word lo, mid, hi, cres; local
241 mid = (lo + hi) / 2;
242 midv = VG_(indexXA)( xa, mid );
244 if (cres < 0) { hi = mid-1; continue; }
245 if (cres > 0) { lo = mid+1; continue; }
246 /* Found it, at mid. See how far we can expand this. */
250 *first = mid;
257 *last = mid;
/external/valgrind/main/exp-sgcheck/tests/
H A Dhackedbz2.c1468 Int32 nb, na, mid; local
1472 mid = (nb + na) >> 1;
1473 if (indx >= cftab[mid]) nb = mid; else na = mid;
/external/valgrind/main/memcheck/
H A Dmc_leakcheck.c289 Int lo, mid, hi, retVal; local
298 mid = (lo + hi) / 2;
299 a_mid_lo = chunks[mid]->data;
300 a_mid_hi = chunks[mid]->data + chunks[mid]->szB;
301 // Extent of block 'mid' is [a_mid_lo .. a_mid_hi).
307 if (chunks[mid]->szB == 0)
311 hi = mid-1;
315 lo = mid+1;
319 retVal = mid;
[all...]
/external/valgrind/main/memcheck/tests/
H A Dorigin5-bz2.c1459 Int32 nb, na, mid; local
1463 mid = (nb + na) >> 1;
1464 if (indx >= cftab[mid]) nb = mid; else na = mid;
H A Dvarinfo6.c1497 Int32 nb, na, mid; local
1501 mid = (nb + na) >> 1;
1502 if (indx >= cftab[mid]) nb = mid; else na = mid;
/external/tremolo/Tremolo/
H A Dfloor1.c83 int mid=j+i; local
84 int k2=mid;
86 while(k1<mid && k2<end){
92 while(k1<mid) B[j++]=A[k1++];
/external/strace/
H A Dunwind.c320 int mid = (upper + lower) / 2; local
322 cur_mmap_cache = &tcp->mmap_cache[mid];
341 upper = mid - 1;
343 lower = mid + 1;
/external/svox/pico/lib/
H A Dpicoklex.c265 picoos_int32 low, mid, high; local
280 mid = (low + high) / 2;
281 indval = klex_getSearchIndexVal(this, mid);
283 low = mid + 1;
285 high = mid;

Completed in 2016 milliseconds

1234567891011>>