HomeSort by relevance Sort by last modified time
    Searched defs:mid (Results 226 - 250 of 490) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/
measunit.cpp 1079 int32_t mid = (start + end) / 2; local
1080 int32_t cmp = uprv_strcmp(array[mid], key);
1082 start = mid + 1;
1086 return mid;
1088 end = mid;
1228 int32_t mid = (start + end) / 2; local
1229 int32_t *midRow = unitPerUnitToSingleUnit[mid];
1231 end = mid;
1233 start = mid + 1;
1235 end = mid;
    [all...]
timezone.cpp 183 int32_t mid; local
191 mid = (int32_t)((start + limit) / 2);
192 if (lastMid == mid) { /* Have we moved? */
195 lastMid = mid;
196 u = ures_getStringByIndex(array, mid, &len, &status);
200 U_DEBUG_TZ_MSG(("tz: compare to %s, %d .. [%d] .. %d\n", U_DEBUG_TZ_STR(u), start, mid, limit));
204 U_DEBUG_TZ_MSG(("fisa: found at %d\n", mid));
205 return mid;
207 limit = mid;
209 start = mid;
    [all...]
  /external/icu/icu4c/source/test/cintltst/
cdattst.c 1248 UDate mid = (UDate) exp((log(small) + log(large)) \/ 2); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
tztest.cpp 250 UDate mid = (min + max) / 2; local
251 if (tz.inDaylightTime(mid, ec) == startsInDST) {
252 min = mid;
254 max = mid;
280 UDate mid = (min + max) / 2; local
281 if (tz.inDaylightTime(mid, status) == startsInDST) {
282 min = mid;
284 max = mid;
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
localtime.c 1307 register int mid = (lo + hi) >> 1; local
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetISO2022.java 739 int mid = (hi+low) >> 1; \/* Finds median *\/ local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
ICUResourceBundleReader.java 1025 int mid, start, limit; local
1292 int mid = (start + limit) \/ 2; local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SpoofChecker.java 1884 int mid = (lo + hi) \/ 2; local
    [all...]
  /external/libxml2/
xmlunicode.c 947 int low, high, mid, cmp; local
    [all...]
  /external/pdfium/core/fxge/dib/
fx_dib_composite.cpp 163 int* mid = &color.red; local
185 mid = &color.blue;
187 mid = &color.green;
191 mid = &color.blue;
193 mid = &color.red;
197 mid = &color.red;
199 mid = &color.green;
203 *mid = (*mid - *min) * s / (*max - *min);
    [all...]
  /external/skia/src/gpu/
SkGpuDevice.cpp 614 SkPoint mid = points[0] + points[1]; local
615 mid.scale(0.5f);
617 SkRect rect = SkRect::MakeLTRB(mid.fX-halfWidth, mid.fY - 0.5f*length - xtraLength,
618 mid.fX+halfWidth, mid.fY + 0.5f*length + xtraLength);
620 m.setSinCos(v.fX, -v.fY, mid.fX, mid.fY);
    [all...]
  /external/skia/src/pathops/
SkOpAngle.cpp 294 // compute the cross check from the mid T values (last resort)
524 SkDVector mid = segment.dPtAtT(tStart + (sCeptT - tStart) / 2) - curve[0]; local
525 double septDir = mid.crossCheck(sCept);
    [all...]
  /external/skia/src/ports/
SkFontHost_win.cpp 173 int32_t mid = min + ((max - min) / 2); local
174 if (GetGlyphOutlineW(hdc, mid, GGO_METRICS | GGO_GLYPH_INDEX, &gm, 0,
176 max = mid;
178 min = mid + 1;
    [all...]
  /external/v8/src/
unicode.cc 61 unsigned int mid = low + ((high - low) >> 1); local
62 uchar current_value = GetEntry(TableGet<kEntryDist>(table, mid));
66 (mid + 1 == size ||
67 GetEntry(TableGet<kEntryDist>(table, mid + 1)) > value)) {
68 low = mid;
71 low = mid + 1;
75 if (mid == 0) break;
76 high = mid - 1;
117 unsigned int mid = low + ((high - low) >> 1); local
118 uchar current_value = GetEntry(TableGet<kEntryDist>(table, mid));
    [all...]
  /external/valgrind/VEX/priv/
guest_x86_helpers.c 2711 UInt mid = 0xFF & (UInt)ent->LdtEnt.Bits.BaseMid; local
    [all...]
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-linux.c 1057 Int mid, local
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
storage.c 2357 Word mid, local
2385 Word mid, local
2408 Word mid, local
2440 Word mid, size, local
    [all...]
  /external/valgrind/memcheck/
mc_leakcheck.c 294 Int lo, mid, hi, retVal; local
303 mid = (lo + hi) / 2;
304 a_mid_lo = chunks[mid]->data;
305 a_mid_hi = chunks[mid]->data + chunks[mid]->szB;
306 // Extent of block 'mid' is [a_mid_lo .. a_mid_hi).
312 if (chunks[mid]->szB == 0)
316 hi = mid-1;
320 lo = mid+1;
324 retVal = mid;
    [all...]
  /external/webp/src/enc/
vp8l_enc.c 1183 const int mid = (low + hi) >> 1; local
    [all...]
  /frameworks/av/media/libstagefright/matroska/
MatroskaExtractor.cpp 190 const size_t mid = lo + (hi - lo) / 2; local
191 const mkvparser::CuePoint* const midCp = mCuePoints.itemAt(mid);
194 lo = mid + 1;
196 hi = mid;
    [all...]
  /frameworks/native/opengl/libagl/
egl.cpp 1171 int mid = (first + last) \/ 2; local
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
GridLayoutManager.java 943 final int mid = (lo + hi) >>> 1; local
    [all...]
  /hardware/qcom/msm8994/kernel-headers/linux/
msm_audio_calibration.h 280 int32_t mid; member in struct:audio_cal_info_sidetone
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_audio_calibration.h 298 int32_t mid; member in struct:audio_cal_info_sidetone
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_audio_calibration.h 316 int32_t mid; member in struct:audio_cal_info_sidetone

Completed in 3411 milliseconds

1 2 3 4 5 6 7 8 91011>>