Searched defs:low (Results 76 - 100 of 248) sorted by relevance

12345678910

/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DDecimal.cpp129 UInt128(uint64_t low, uint64_t high) argument
130 : m_high(high), m_low(low)
137 uint64_t low() const { return m_low; } function in class:WebCore::DecimalPrivate::UInt128
145 static uint64_t makeUInt64(uint32_t low, uint32_t high) { return low | (static_cast<uint64_t>(high) << 32); } argument
434 return Decimal(resultSign, resultExponent, work.low());
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Dfixed-dtoa.cc45 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } argument
/external/chromium_org/third_party/icu/source/common/
H A Dlocmap.c932 uint32_t low = 0; local
950 while (high > low) /*binary search*/{
952 mid = (high+low) >> 1; /*Finds median*/
962 low = mid;
H A Dusc_impl.c278 * in the text, see if it's followed by a low surrogate
281 UChar low = scriptRun->textArray[scriptRun->scriptLimit + 1]; local
284 * if it is followed by a low surrogate,
287 if (low >= 0xDC00 && low <= 0xDFFF) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
/external/chromium_org/third_party/icu/source/i18n/
H A Djapancal.cpp384 int32_t low = 0; local
395 low = kCurrentEra;
397 fprintf(stderr, " low=%d (special)\n", low);
406 while (low < high - 1) {
407 int32_t i = (low + high) / 2;
411 fprintf(stderr, " d=%d low=%d, high=%d. Considering %d:M%d D%d Y%d. { we are ?:M%d D%d Y%d }\n",
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year);
431 low = i;
436 fprintf(stderr, ". low
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsnmfmt.cpp141 double low = -high; local
144 } while (low > it || it > high);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dinttree.c36 static IntervalTreeNode *ITN_create(long low, long high, void *data);
55 ITN_create(long low, long high, void *data) argument
59 if (low < high) {
60 itn->low = low;
63 itn->low = high;
64 itn->high = low;
251 if (x->low > z->low)
253 else /* x->low <
315 IT_insert(IntervalTree *it, long low, long high, void *data) argument
662 IT_delete_node(IntervalTree *it, IntervalTreeNode *z, long *low, long *high) argument
790 IT_enumerate(IntervalTree *it, long low, long high, void *cbd, void (*callback) (IntervalTreeNode *node, void *cbd)) argument
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/coff/
H A Dwin64-except.c359 long low, high, mask; local
374 span = 1; low = 8; high = 128; mask = 0x7;
382 low = 0;
392 low = 0;
407 if (win64_uwcode_bc_expand(bc, span, intv, intv, &low, &high) > 0)
408 add_span(add_span_data, bc, span, &code->off, low, high);
410 if (intv < low)
418 add_span(add_span_data, bc, span, &code->off, low, high);
472 long intv, low, high, mask; local
495 size = 0; low
[all...]
/external/chromium_org/third_party/zlib/
H A Dinflate.c306 unsigned low, size; local
321 low = 0;
323 if ((low % 7) == 0) printf("\n ");
324 printf("{%u,%u,%d}", state.lencode[low].op, state.lencode[low].bits,
325 state.lencode[low].val);
326 if (++low == size) break;
332 low = 0;
334 if ((low % 6) == 0) printf("\n ");
335 printf("{%u,%u,%d}", state.distcode[low]
[all...]
/external/chromium_org/v8/src/
H A Dfast-dtoa.cc352 // * low, w and high are correct up to 1 ulp (unit in the last place). That
354 // * low.e() == w.e() == high.e()
355 // * low < w < high, and taking into account their error: low~ <= high~
362 // correct values of low and high (without their error).
382 // represent 'w' we can stop. Everything inside the interval low - high
383 // represents w. However we have to pay attention to low, high and w's
385 static bool DigitGen(DiyFp low, argument
391 ASSERT(low.e() == w.e() && w.e() == high.e());
392 ASSERT(low
[all...]
H A Dfixed-dtoa.cc45 UInt128(uint64_t high, uint64_t low) : high_bits_(high), low_bits_(low) { } argument
H A Dlist-inl.h241 int low = 0; local
243 while (low <= high) {
244 int mid = (low + high) / 2;
252 low = mid + 1;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DInsnFormat.java521 * @param low {@code 0..255;} low byte
525 protected static short codeUnit(int low, int high) { argument
526 if ((low & 0xff) != low) {
527 throw new IllegalArgumentException("low out of range 0..255");
534 return (short) (low | (high << 8));
540 * @param n0 {@code 0..15;} low nibble
541 * @param n1 {@code 0..15;} medium-low nibble
569 * @param low {
573 makeByte(int low, int high) argument
[all...]
/external/e2fsprogs/e2fsck/
H A Ddirinfo.c178 int low, high, mid; local
217 low = 0;
219 if (ino == ctx->dir_info->array[low].ino) {
222 ctx->dir_info->array[low].dotdot,
223 ctx->dir_info->array[low].parent);
225 return &ctx->dir_info->array[low];
236 while (low < high) {
237 mid = (low+high)/2;
238 if (mid == low || mid == high)
251 low
[all...]
H A Dea_refcount.c158 int low, high, mid; local
164 low = 0;
184 while (low <= high) {
186 mid = (low+high)/2;
188 if (low == high)
189 mid = low;
192 lowval = refcount->list[low].ea_blk;
207 mid = low + ((int) (range * (high-low)));
217 low
[all...]
/external/eigen/Eigen/src/Core/
H A DCwiseNullaryOp.h226 * The function generates 'size' equally spaced values in the closed interval [low,high].
242 DenseBase<Derived>::LinSpaced(Sequential_t, Index size, const Scalar& low, const Scalar& high) argument
245 return DenseBase<Derived>::NullaryExpr(size, internal::linspaced_op<Scalar,false>(low,high,size));
254 DenseBase<Derived>::LinSpaced(Sequential_t, const Scalar& low, const Scalar& high) argument
258 return DenseBase<Derived>::NullaryExpr(Derived::SizeAtCompileTime, internal::linspaced_op<Scalar,false>(low,high,Derived::SizeAtCompileTime));
264 * The function generates 'size' equally spaced values in the closed interval [low,high].
276 DenseBase<Derived>::LinSpaced(Index size, const Scalar& low, const Scalar& high) argument
279 return DenseBase<Derived>::NullaryExpr(size, internal::linspaced_op<Scalar,true>(low,high,size));
288 DenseBase<Derived>::LinSpaced(const Scalar& low, const Scalar& high) argument
292 return DenseBase<Derived>::NullaryExpr(Derived::SizeAtCompileTime, internal::linspaced_op<Scalar,true>(low,hig
387 setLinSpaced(Index size, const Scalar& low, const Scalar& high) argument
404 setLinSpaced(const Scalar& low, const Scalar& high) argument
[all...]
/external/elfutils/libdwfl/
H A Dlinux-proc-maps.c135 Dwarf_Addr low = 0, high = 0; local
142 low, high);
184 low = start;
208 low = start;
/external/icu4c/common/
H A Dlocmap.c1033 uint32_t low = 0; local
1051 while (high > low) /*binary search*/{
1053 mid = (high+low) >> 1; /*Finds median*/
1063 low = mid;
H A Dusc_impl.c278 * in the text, see if it's followed by a low surrogate
281 UChar low = scriptRun->textArray[scriptRun->scriptLimit + 1]; local
284 * if it is followed by a low surrogate,
287 if (low >= 0xDC00 && low <= 0xDFFF) {
288 ch = (high - 0xD800) * 0x0400 + low - 0xDC00 + 0x10000;
/external/icu4c/i18n/
H A Djapancal.cpp384 int32_t low = 0; local
395 low = kCurrentEra;
397 fprintf(stderr, " low=%d (special)\n", low);
406 while (low < high - 1) {
407 int32_t i = (low + high) / 2;
411 fprintf(stderr, " d=%d low=%d, high=%d. Considering %d:M%d D%d Y%d. { we are ?:M%d D%d Y%d }\n",
412 diff,low, high, i, kEraInfo[i].month-1, kEraInfo[i].day, kEraInfo[i].year, internalGet(UCAL_MONTH), internalGet(UCAL_DATE),year);
431 low = i;
436 fprintf(stderr, ". low
[all...]
/external/icu4c/test/intltest/
H A Dtsnmfmt.cpp150 double low = -high; local
153 } while (low > it || it > high);
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
H A DHingeJoint.java100 public void setLimit(float low, float high) { argument
101 setLimit(objectId, low, high);
104 private native void setLimit(long objectId, float low, float high); argument
106 public void setLimit(float low, float high, float _softness, float _biasFactor, float _relaxationFactor) { argument
110 setLimit(objectId, low, high, _softness, _biasFactor, _relaxationFactor);
113 private native void setLimit(long objectId, float low, float high, float _softness, float _biasFactor, float _relaxationFactor); argument
/external/libppp/src/
H A Dnat_cmd.c344 StrToPortRange(const char *str, u_short *low, u_short *high, const char *proto) argument
353 res = StrToPort(str, low, proto);
362 *high = *low;
369 StrToAddrAndPort(const char *str, struct in_addr *addr, u_short *low, argument
387 return StrToPortRange(colon + 1, low, high, proto);
/external/opencv/cv/src/
H A Dcvcanny.cpp63 int low, high; local
116 low = ul.i;
121 low = cvFloor( low_thresh );
242 if( m > low )
H A Dcvthresh.cpp209 double low = 0, high = 0, delta = 0; local
225 low = hist->thresh[0][0];
230 low = 0;
234 delta = (high-low)/count;
235 low += delta*0.5;
245 mu += (i*delta + low)*h[i];
269 val_i = i*delta + low;

Completed in 982 milliseconds

12345678910