Searched refs:mid (Results 226 - 250 of 320) sorted by relevance

1234567891011>>

/external/svox/pico/lib/
H A Dpicokpr.c303 extern picoos_bool picokpr_isEqualMid (picokpr_Preproc preproc, picoos_uchar str[], picoos_int32 len__11, picokpr_StrArrOffset mid) argument
307 lstrp = (picokpr_VarStrPtr)(void *) &((kpr_SubObj)preproc)->rStrArr[mid];
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmsplugin.c378 cmsFloat64Number floater, sign, mid; local
387 mid = (cmsFloat64Number) FracPart / 65536.0;
388 floater = (cmsFloat64Number) Whole + mid;
/external/pcre/dist/
H A Dpcretest.c2798 int mid = 64; local
2805 *limit = mid;
2812 /* fprintf(outfile, "Testing %s limit = %d\n", msg, mid); */
2813 min = mid;
2814 mid = (mid == max - 1)? max : (max > 0)? (min + max)/2 : mid*2;
2820 if (mid == min + 1)
2822 fprintf(outfile, "Minimum %s limit = %d\n", msg, mid);
2825 /* fprintf(outfile, "Testing %s limit = %d\n", msg, mid); */
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/poly1305/
H A Dpoly1305_arm_asm.S146 # qhasm: reg128 mid
687 # qhasm: new mid
694 # qhasm: mid = d01[1]d23[0] mid[2,3]
695 # asm 1: vext.32 <mid=reg128#1%bot,<d01=reg128#12%bot,<d23=reg128#2%bot,#1
696 # asm 2: vext.32 <mid=d0,<d01=d22,<d23=d2,#1
706 # qhasm: mid = mid[0,1] d01[3]d23[2]
707 # asm 1: vext.32 <mid=reg128#1%top,<d01=reg128#12%top,<d23=reg128#2%top,#1
708 # asm 2: vext.32 <mid
[all...]
/external/chromium_org/third_party/bintrees/bintrees/
H A Dcwalker.c3517 int start = 0, mid = 0, end = count - 1; local
3522 mid = (start + end) / 2;
3523 if (code_line < entries[mid].code_line) {
3524 end = mid;
3525 } else if (code_line > entries[mid].code_line) {
3526 start = mid + 1;
3528 return mid;
3531 if (code_line <= entries[mid].code_line) {
3532 return mid;
3534 return mid
[all...]
H A Dqavltree.c3120 int start = 0, mid = 0, end = count - 1; local
3125 mid = (start + end) / 2;
3126 if (code_line < entries[mid].code_line) {
3127 end = mid;
3128 } else if (code_line > entries[mid].code_line) {
3129 start = mid + 1;
3131 return mid;
3134 if (code_line <= entries[mid].code_line) {
3135 return mid;
3137 return mid
[all...]
H A Dqbintree.c3115 int start = 0, mid = 0, end = count - 1; local
3120 mid = (start + end) / 2;
3121 if (code_line < entries[mid].code_line) {
3122 end = mid;
3123 } else if (code_line > entries[mid].code_line) {
3124 start = mid + 1;
3126 return mid;
3129 if (code_line <= entries[mid].code_line) {
3130 return mid;
3132 return mid
[all...]
H A Dqrbtree.c3117 int start = 0, mid = 0, end = count - 1; local
3122 mid = (start + end) / 2;
3123 if (code_line < entries[mid].code_line) {
3124 end = mid;
3125 } else if (code_line > entries[mid].code_line) {
3126 start = mid + 1;
3128 return mid;
3131 if (code_line <= entries[mid].code_line) {
3132 return mid;
3134 return mid
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcdattst.c1179 UDate mid = (UDate) exp((log(small) + log(large)) / 2); local
1184 _aux1ExtremeDates(fmt, mid, buf, buflen, cbuf, ec) &&
1185 _aux2ExtremeDates(fmt, small, mid, buf, buflen, cbuf, count+1, ec) &&
1186 _aux2ExtremeDates(fmt, mid, large, buf, buflen, cbuf, count+1, ec);
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dlocaltime.c1299 register int mid = (lo + hi) >> 1; local
1301 if (t < sp->ats[mid])
1302 hi = mid;
1303 else lo = mid + 1;
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dversion_set.cc83 uint32_t mid = (left + right) / 2; local
84 const FileMetaData* f = files[mid];
86 // Key at "mid.largest" is < "target". Therefore all
87 // files at or before "mid" are uninteresting.
88 left = mid + 1;
90 // Key at "mid.largest" is >= "target". Therefore all files
91 // after "mid" are uninteresting.
92 right = mid;
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h1142 uptr mid = (beg + end) / 2; // Invariant: mid >= beg + 1 local
1143 if (p < reinterpret_cast<uptr>(chunks_[mid]))
1144 end = mid - 1; // We are not interested in chunks_[mid].
1146 beg = mid; // chunks_[mid] may still be what we want.
/external/icu/icu4c/source/test/cintltst/
H A Dcdattst.c1179 UDate mid = (UDate) exp((log(small) + log(large)) / 2); local
1184 _aux1ExtremeDates(fmt, mid, buf, buflen, cbuf, ec) &&
1185 _aux2ExtremeDates(fmt, small, mid, buf, buflen, cbuf, count+1, ec) &&
1186 _aux2ExtremeDates(fmt, mid, large, buf, buflen, cbuf, count+1, ec);
/external/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c1299 register int mid = (lo + hi) >> 1; local
1301 if (t < sp->ats[mid])
1302 hi = mid;
1303 else lo = mid + 1;
/external/pixman/pixman/
H A Dpixman-access.c571 uint8_t mid = (low + high) / 2; local
573 if (to_linear[mid] > f)
574 high = mid;
576 low = mid;
/external/flac/libFLAC/
H A Dstream_decoder.c1315 /* simply using realloc() is not practical because the number of channels may change mid-stream */
2005 FLAC__int32 mid, side; local
2090 mid = decoder->private_->output[0][i];
2092 mid <<= 1;
2093 mid |= (side & 1); /* i.e. if 'side' is odd... */
2094 decoder->private_->output[0][i] = (mid + side) >> 1;
2095 decoder->private_->output[1][i] = (mid - side) >> 1;
2098 mid = (decoder->private_->output[0][i] << 1) | (decoder->private_->output[1][i] & 1); /* i.e. if 'side' is odd... */
2099 decoder->private_->output[0][i] = (mid + decoder->private_->output[1][i]) >> 1;
2100 decoder->private_->output[1][i] = (mid
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DSimplify.cpp2229 double mid, bool opp, bool current) const {
2260 double closest = fabs(intersections.fT[0][0] - mid);
2262 double test = fabs(intersections.fT[0][idx] - mid);
3872 double tAtMid(int start, int end, double mid) const {
3873 return fTs[start].fT * (1 - mid) + fTs[end].fT * mid;
4056 void xyAtT(double mid, SkPoint& pt) const {
4057 (*SegmentXYAtT[fVerb])(fPts, mid, &pt);
5827 int& endIndex, double& bestHit, SkScalar& bestDx, bool& tryAgain, double& mid, bool opp) {
5829 double tAtMid = current->tAtMid(index, endIndex, mid);
[all...]
/external/skia/experimental/Intersection/
H A DSimplify.cpp2229 double mid, bool opp, bool current) const {
2260 double closest = fabs(intersections.fT[0][0] - mid);
2262 double test = fabs(intersections.fT[0][idx] - mid);
3872 double tAtMid(int start, int end, double mid) const {
3873 return fTs[start].fT * (1 - mid) + fTs[end].fT * mid;
4056 void xyAtT(double mid, SkPoint& pt) const {
4057 (*SegmentXYAtT[fVerb])(fPts, mid, &pt);
5827 int& endIndex, double& bestHit, SkScalar& bestDx, bool& tryAgain, double& mid, bool opp) {
5829 double tAtMid = current->tAtMid(index, endIndex, mid);
[all...]
/external/chromium_org/third_party/d3/src/
H A Dd3.js117 var mid = lo + hi >>> 1;
118 if (compare(a[mid], x) < 0) lo = mid + 1; else hi = mid;
126 var mid = lo + hi >>> 1;
127 if (compare(a[mid], x) > 0) hi = mid; else lo = mid + 1;
/external/chromium_org/third_party/icu/source/i18n/
H A Dolsontz.cpp570 int32_t year, month, dom, dow, doy, mid; local
571 Grego::timeToFields(current, year, month, dom, dow, doy, mid);
/external/chromium_org/third_party/skia/tests/
H A DPathOpsAngleIdeas.cpp532 SkDVector mid = q.ptAtT(t / 2) - origin;
533 double midXray = mid.crossCheck(ray);
/external/icu/icu4c/source/i18n/
H A Dolsontz.cpp570 int32_t year, month, dom, dow, doy, mid; local
571 Grego::timeToFields(current, year, month, dom, dow, doy, mid);
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c126 uint16_t mid[POS_STATES_MAX][LEN_MID_SYMBOLS]; member in struct:lzma_len_dec
631 probs = l->mid[pos_state];
/external/skia/tests/
H A DPathOpsAngleIdeas.cpp532 SkDVector mid = q.ptAtT(t / 2) - origin;
533 double midXray = mid.crossCheck(ray);
/external/chromium_org/third_party/cld/encodings/compact_lang_det/
H A Dcompact_lang_det_impl.cc1767 int mid = (lo + hi) >> 1; local
1768 int comp = memcmp(&hintprobs[mid].key[0], norm_key, 4);
1770 lo = mid + 1;
1772 hi = mid;
1774 return mid;

Completed in 1251 milliseconds

1234567891011>>