/external/valgrind/VEX/priv/ |
ir_inject.c | 147 IROp high, low; local 165 case Ity_I128: high = Iop_128HIto64; low = Iop_128to64; goto store128; 166 case Ity_F128: high = Iop_F128HItoF64; low = Iop_F128LOtoF64; goto store128; 167 case Ity_D128: high = Iop_D128HItoD64; low = Iop_D128LOtoD64; goto store128; 173 store_aux(irsb, endian, addr, unop(high, data)); 178 store_aux(irsb, endian, next_addr, unop(high, data));
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
EndianUtils.java | 189 long high = data[ offset + 3 ] & 0xff; local 191 return (high << 24) + (0xffffffffL & low); 225 long high = local 230 return (high << 32) + (0xffffffffL & low); 378 long high = value4 & 0xff; local 380 return (high << 24) + (0xffffffffL & low);
|
/external/e2fsprogs/e2fsck/ |
dirinfo.c | 186 int low, high, mid; local 226 high = ctx->dir_info->count-1; 235 if (ino == ctx->dir_info->array[high].ino) { 238 ctx->dir_info->array[high].dotdot, 239 ctx->dir_info->array[high].parent); 241 return &ctx->dir_info->array[high]; 244 while (low < high) { 245 mid = (low+high)/2; 246 if (mid == low || mid == high) 257 high = mid [all...] |
/development/perftests/panorama/feature_mos/src/mosaic/ |
Delaunay.cpp | 77 int low, high; local 80 high = hi; 82 if ( low < (high-2) ) { 85 maxx = sp[high]; 87 spsorty( sp, low, high); 92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); 94 build( split+1, high, &rdi, &rdo, (rows-lowrows) ); 105 else if (low >= (high - 1)) { // two or one points 106 a = makeEdge(sp[low], sp[high]); 112 b = makeEdge(s2, (s3 = sp[high])); [all...] |
/external/vixl/src/vixl/ |
invalset.h | 439 size_t high = (end - start) - 1; 440 while (low < high) { 442 while (!IsValid(elements[low]) && (low < high)) ++low; 443 while (!IsValid(elements[high]) && (low < high)) --high; 444 VIXL_ASSERT(low <= high); 446 size_t middle = low / 2 + high / 2 + (low & high & 1); 447 if ((middle == low) || (middle == high)) { [all...] |
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Delaunay.cpp | 77 int low, high; local 80 high = hi; 82 if ( low < (high-2) ) { 85 maxx = sp[high]; 87 spsorty( sp, low, high); 92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); 94 build( split+1, high, &rdi, &rdo, (rows-lowrows) ); 105 else if (low >= (high - 1)) { // two or one points 106 a = makeEdge(sp[low], sp[high]); 112 b = makeEdge(s2, (s3 = sp[high])); [all...] |
/external/ImageMagick/coders/ |
caption.c | 209 high, 239 high=draw_info->pointsize; 240 for (low=1.0; (high-low) > 0.5; ) 242 draw_info->pointsize=(low+high)/2.0; 260 high=draw_info->pointsize-0.5; 267 high=draw_info->pointsize-0.5; 269 draw_info->pointsize=(low+high)/2.0-0.5; 207 high, local
|
/external/elfutils/libdwfl/ |
linux-proc-maps.c | 179 do_report (Dwfl *dwfl, char **plast_file, Dwarf_Addr low, Dwarf_Addr high) 184 low, high); 193 #define report() do_report(dwfl, &last_file, low, high) 201 Dwarf_Addr low = 0, high = 0; local 236 high = end; 253 high = end; 261 high = end;
|
/libcore/ojluni/src/main/java/java/util/ |
Arrays.java | 1857 int high = toIndex - 1; local 1938 int high = toIndex - 1; local 2019 int high = toIndex - 1; local 2100 int high = toIndex - 1; local 2181 int high = toIndex - 1; local 2264 int high = toIndex - 1; local 2355 int high = toIndex - 1; local 2461 int high = toIndex - 1; local 2565 int high = toIndex - 1; local [all...] |
/external/opencv3/modules/calib3d/src/ |
dls.h | 165 int high = nn - 1; local 174 if (i < low || i > high) { 262 for (int i = low; i <= high; i++) { 418 for (int i = low; i <= high; i++) { 572 if (i < low || i > high) { 582 for (int i = low; i <= high; i++) { 584 for (int k = low; k <= std::min(j, high); k++) { 599 int high = n - 1; local 601 for (int m = low + 1; m <= high - 1; m++) { 606 for (int i = m; i <= high; i++) [all...] |
/ndk/sources/cxx-stl/stlport/src/ |
facets_byname.cpp | 131 ctype_byname<wchar_t>::do_is(const wchar_t* low, const wchar_t* high, 143 for ( ; low < high; ++low, ++m) 145 return high; 150 ::do_scan_is(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const 151 { return find_if(low, high, _STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype)); } 155 ::do_scan_not(ctype_base::mask m, const wchar_t* low, const wchar_t* high) const 156 { return find_if(low, high, not1(_STLP_PRIV _Ctype_byname_w_is_mask(m, _M_ctype))); } 162 ctype_byname<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const { 163 for ( ; low < high; ++low) 165 return high; [all...] |
ctype.cpp | 399 const wchar_t* ctype<wchar_t>::do_is(const wchar_t* low, const wchar_t* high, 404 for ( ; low < high; ++low, ++vec) { 408 return high; 413 const wchar_t* low, const wchar_t* high) const { 414 return find_if(low, high, _Ctype_w_is_mask(m, ctype<char>::classic_table())); 420 const wchar_t* low, const wchar_t* high) const { 421 return find_if(low, high, not1(_Ctype_w_is_mask(m, ctype<char>::classic_table()))); 430 ctype<wchar_t>::do_toupper(wchar_t* low, const wchar_t* high) const { 431 for ( ; low < high; ++low) { 436 return high; [all...] |
/external/crcalc/src/com/hp/creals/ |
UnaryCRFunction.java | 153 * and strictly monotone on the interval [<TT>low</tt>, <TT>high</tt>]. 155 * [<TT>low</tt>, <TT>high</tt>]. 158 public UnaryCRFunction inverseMonotone(CR low, CR high) { 159 return new inverseMonotone_UnaryCRFunction(this, low, high); 164 * The function must be defined on the interval [<TT>low</tt>, <TT>high</tt>], 166 * monotone in the open interval [<TT>low</tt>, <TT>high</tt>]. 169 public UnaryCRFunction monotoneDerivative(CR low, CR high) { 170 return new monotoneDerivative_UnaryCRFunction(this, low, high); 285 final CR high[] = new CR[1]; field in class:inverseMonotone_UnaryCRFunction 289 // Bound on msd of both f(high) and f(low 581 final CR high[] = new CR[1]; field in class:monotoneDerivative_UnaryCRFunction [all...] |
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/ |
btConvexHullComputer.cpp | 144 uint64_t high; member in class:btConvexHullInternal::Int128 150 Int128(uint64_t low, uint64_t high): low(low), high(high) 154 Int128(uint64_t low): low(low), high(0) 158 Int128(int64_t value): low(value), high((value >= 0) ? 0 : (uint64_t) -1LL) 168 return Int128((uint64_t) -(int64_t)low, ~high + (low == 0)); 177 : [rl] "=r" (result.low), [rh] "=r" (result.high) 178 : "0"(low), "1"(high), [bl] "g"(b.low), [bh] "g"(b.high) 582 static uint32_t high(uint64_t value) function in class:btConvexHullInternal::DMul 602 static uint64_t high(Int128 value) function in class:btConvexHullInternal::DMul [all...] |
/art/compiler/optimizing/ |
locations.h | 130 static Location RegisterPairLocation(int low, int high) { 131 return Location(kRegisterPair, low << 16 | high); 134 static Location FpuRegisterPairLocation(int low, int high) { 135 return Location(kFpuRegisterPair, low << 16 | high); 168 int high() const { function in class:art::Location 194 return static_cast<T>(high()); 206 return static_cast<T>(high()); 226 return Location::RegisterLocation(high()); 228 return Location::FpuRegisterLocation(high());
|
/device/google/contexthub/lib/libm/ |
ef_rem_pio2.c | 148 __uint32_t high; local 151 GET_FLOAT_WORD(high,y[0]); 152 i = j-((high>>23)&0xff); 159 GET_FLOAT_WORD(high,y[0]); 160 i = j-((high>>23)&0xff);
|
/external/chromium-trace/catapult/telemetry/telemetry/util/ |
statistics.py | 10 def Clamp(value, low=0.0, high=1.0): 11 """Clamp a value between some low and high value.""" 12 return min(max(value, low), high) 31 high = max(samples) 34 if high-low == 0.0: 36 scale = (new_high - new_low) / (high - low)
|
/external/icu/icu4c/source/tools/makeconv/ |
gencnvex.c | 395 * 1. Count the number of unique unit values and get the low/high unit values 417 int32_t low, high, prev; local 424 /* step 1: examine the input units; set low, high, uniqueCount */ 430 prev=high=low; 434 high=bytes[unitIndex]; 436 if(high!=prev) { 437 prev=high; 443 count=(high-low)+1; 449 * from low to high 474 high=bytes[unitIndex] 716 UChar32 low, high, prev; local [all...] |
/libcore/ojluni/src/main/java/sun/misc/ |
FormattedFloatingDecimal.java | 72 static final long fractHOB = ( 1L<<expShift ); // assumed High-Order bit 99 * count number of bits from high-order 1 bit to low-order 1 bit, 233 * We now know where the high-order 1 bit is, 400 // carryout! High-order 1, rest 0s, larger exp. 451 // carryout! High-order 1, rest 0s, larger exp. 507 // Insert assumed high-order bit for normalized numbers. 574 // Insert assumed high-order bit for normalized numbers. 757 boolean low, high; 767 * as it makes our fist guess (quotient of high-order words) 787 * was too high, our first quotient will be zero. In thi [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
elfcore.h | 287 bfd_size_type high = 0; local 295 if (high < current) 296 high = current; 301 if ((bfd_size_type) statbuf.st_size < high) 306 abfd, (unsigned long) high, (unsigned long) statbuf.st_size);
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
e_hypotl.c | 118 u_int32_t high; local 120 GET_HIGH_WORD(high,t1); 121 SET_HIGH_WORD(t1,high+DESW(k));
|
/cts/tests/camera/src/android/hardware/camera2/cts/helpers/ |
AssertHelpers.java | 110 * Assert that {@code low <= value <= high} 112 public static void assertInRange(float value, float low, float high) { 118 value, high), 119 value <= high);
|
/external/compiler-rt/test/builtins/Unit/ |
ashlti3_test.c | 40 at.s.high, at.s.low, b, xt.s.high, xt.s.low, 41 expectedt.s.high, expectedt.s.low);
|
ashrti3_test.c | 38 at.s.high, at.s.low, b, xt.s.high, xt.s.low, 39 expectedt.s.high, expectedt.s.low);
|
lshrti3_test.c | 38 at.s.high, at.s.low, b, xt.s.high, xt.s.low, 39 expectedt.s.high, expectedt.s.low);
|