/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/Unwind/ |
EHHeaderParser.hpp | 109 size_t low = 0; local 111 size_t mid = low + (len / 2); 117 low = mid; 120 low = mid; 127 tableEntry = hdrInfo.table + low * tableEntrySize;
|
UnwindCursor.hpp | 908 uint32_t low = 0; local 911 while (low < high) { 912 uint32_t mid = (low + high) / 2; 913 //if ( log ) fprintf(stderr, "\tmid=%d, low=%d, high=%d, *mid=0x%08X\n", 914 //mid, low, high, topIndex.functionOffset(mid)); 918 low = mid; 921 low = mid + 1; 927 const uint32_t firstLevelFunctionOffset = topIndex.functionOffset(low); 929 topIndex.functionOffset(low + 1); 931 sects.compact_unwind_section + topIndex.secondLevelPagesSectionOffset(low); [all...] |
/external/libvpx/libvpx/ |
rate_hist.c | 23 int low; member in struct:hist_bucket 57 hist->bucket[i].low = INT_MAX; 115 if (hist->bucket[idx].low > avg_bitrate) 116 hist->bucket[idx].low = (int)avg_bitrate; 168 assert(bucket[merge_bucket].low != bucket[merge_bucket].high); 239 if (bucket[i].low == bucket[i].high) 240 fprintf(stderr, pat1, bucket[i].low, ""); 242 fprintf(stderr, pat2, bucket[i].low, bucket[i].high); 259 bucket[buckets].low = bucket[buckets].high = i; 277 if (hist->bucket[i].low == INT_MAX [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioEqualizer.cpp | 172 void AudioEqualizer::getBandRange(int band, uint32_t & low, 176 low = 0; 179 low = mpHighShelf->getFrequency(); 182 mpPeakingFilters[band - 1].getBandRange(low, high); 256 uint32_t low = mpLowShelf->getFrequency(); local 257 if (targetFreq <= low) { 272 low = freq; 274 // Now, low is right below the target and high is right above. See which one 276 low = Effects_log2(low); [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
rate_hist.c | 23 int low; member in struct:hist_bucket 57 hist->bucket[i].low = INT_MAX; 112 if (hist->bucket[idx].low > avg_bitrate) 113 hist->bucket[idx].low = (int)avg_bitrate; 165 assert(bucket[merge_bucket].low != bucket[merge_bucket].high); 236 if (bucket[i].low == bucket[i].high) 237 fprintf(stderr, pat1, bucket[i].low, ""); 239 fprintf(stderr, pat2, bucket[i].low, bucket[i].high); 256 bucket[buckets].low = bucket[buckets].high = i; 274 if (hist->bucket[i].low == INT_MAX [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) 144 *m = ctype_base::mask (_WLocale_ctype(_M_ctype, *low, all_bits)); 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 [all...] |
/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
CollationPerformanceTest.java | 1144 int low = fromIndex; local 1175 int low = fromIndex; local 1206 int low = fromIndex; local [all...] |
/frameworks/rs/driver/runtime/arch/ |
generic.c | 20 extern short __attribute__((overloadable, always_inline)) rsClamp(short amount, short low, short high); 30 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \ 31 return amount < low ? low : (amount > high ? high : amount); \ 34 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \ 36 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \ 37 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y); \ 41 extern T##3 __attribute__((overloadable)) clamp(T##3 amount, T##3 low, T##3 high) { [all...] |
/external/zlib/src/contrib/infback9/ |
infback9.c | 56 unsigned sym, bits, low, size; local 91 low = 0; 93 if ((low % 6) == 0) printf("\n "); 94 printf("{%u,%u,%d}", lenfix[low].op, lenfix[low].bits, 95 lenfix[low].val); 96 if (++low == size) break; 102 low = 0; 104 if ((low % 5) == 0) printf("\n "); 105 printf("{%u,%u,%d}", distfix[low].op, distfix[low].bits [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
mls.py | 191 low = level_factory(policy, levels[0].strip()) 200 high = low 204 policy_range = qpol.qpol_mls_range_t(policy, low.qpol_symbol, high.qpol_symbol) 207 format(sym, low, high)) 221 This is a low-level policy detail exposed for internal use only. 431 low = self.low 432 if high == low: 433 return str(low) 435 return "{0} - {1}".format(low, high 460 def low(self): member in class:Range [all...] |
/external/gptfdisk/ |
gpttext.cc | 149 uint32_t low, high; local 152 if (GetPartRange(&low, &high) > 0) { 153 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): "; 154 partNum = GetNumber(low + 1, high + 1, low, prompt.str()); 250 uint32_t low, high; local 253 if (GetPartRange(&low, &high) > 0) { 254 prompt << "Partition number (" << low + 1 << "-" << high + 1 << "): "; 255 partNum = GetNumber(low + 1, high + 1, low, prompt.str()) 265 uint32_t low, high; local 279 uint32_t low, high; local 333 uint32_t low, high; local 384 uint32_t low, high; local [all...] |
/external/ImageMagick/coders/ |
label.c | 151 low; 176 for (low=1.0; (high-low) > 0.5; ) 178 draw_info->pointsize=(low+high)/2.0; 189 low=draw_info->pointsize+0.5; 196 low=draw_info->pointsize+0.5; 200 draw_info->pointsize=(low+high)/2.0-0.5; 149 low; local
|
/external/e2fsprogs/lib/ext2fs/ |
getsize.c | 146 ext2_loff_t high, low; 254 low = 0; 256 low = high; 257 while (low < high - 1) { 258 const ext2_loff_t mid = (low + high) / 2; 261 low = mid; 266 size64 = low + 1;
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
LevelListDrawable.java | 68 public void addLevel(int low, int high, Drawable drawable) { 70 mLevelListState.addLevel(low, high, drawable); 100 int low = 0; local 118 low = a.getInt( 147 mLevelListState.addLevel(low, high, dr); 197 public void addLevel(int low, int high, Drawable drawable) { 199 mLows[pos] = low;
|
/external/gemmlowp/meta/generators/ |
zip_Nx8_neon.py | 199 registers.Low(lane.aggregator), 203 low = registers.Low(temp) 207 emitter.EmitVPadd('u32', low, lane_temps[0], lane_temps[0]) 209 emitter.EmitVPadd('u32', low, lane_temps[0], lane_temps[1]) 211 emitter.EmitVPadd('u32', low, lane_temps[0], lane_temps[1]) 214 emitter.EmitVPadd('u32', low, lane_temps[0], lane_temps[1]) 225 '1.32', emitter.Lane(low, 0), emitter.Dereference(output_address, None)) 227 emitter.EmitVStore('1.32', low, emitter.Dereference(output_address, 64)) 230 '1.32', low, emitter.DereferenceIncrement(output_address, 64) [all...] |
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/ |
msr_server_win.py | 77 low = ctypes.c_uint() 80 ctypes.byref(low), ctypes.byref(high)) 81 return high.value << 32 | low.value
|
/external/chromium-trace/catapult/telemetry/telemetry/value/ |
histogram_util.py | 29 # the highest bucket will have a 'low': maxvalue entry in the dict but no 31 # and uses it to get bucket mean. So default it to the same value as low. 32 buckets[-1].setdefault('high', buckets[-1]['low']) 62 start_histogram_bucket_counts[b['low']] = b['count'] 67 low = b['low'] 68 if low in start_histogram_bucket_counts: 69 new_bucket['count'] = b['count'] - start_histogram_bucket_counts[low] 94 key = (b['low'], b['high']) 97 buckets = [{'low': key[0], 'high': key[1], 'count': value [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/ |
iri2uri.py | 56 for low, high in escape_range: 57 if i < low: 59 if i >= low and i <= high:
|
/external/compiler-rt/test/builtins/Unit/ |
negti2_test.c | 36 at.s.high, at.s.low, xt.s.high, xt.s.low, expectedt.s.high, expectedt.s.low);
|
/external/fec/ |
sumsq_sse2_assist.s | 20 movaps low,%xmm3 # load mask 38 movd %xmm0,%eax # low 32 bits of sum 49 low: .byte 255,255,255,255,0,0,0,0,255,255,255,255,0,0,0,0 label
|
/libcore/ojluni/src/main/java/java/util/ |
Arrays.java | 1856 int low = fromIndex; local 1937 int low = fromIndex; local 2018 int low = fromIndex; local 2099 int low = fromIndex; local 2180 int low = fromIndex; local 2263 int low = fromIndex; local 2354 int low = fromIndex; local 2460 int low = fromIndex; local 2564 int low = fromIndex; local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
locale.cpp | 812 ctype<wchar_t>::do_is(const char_type* low, const char_type* high, mask* vec) const 814 for (; low != high; ++low, ++vec) 815 *vec = static_cast<mask>(isascii(*low) ? 816 ctype<char>::classic_table()[*low] : 0); 817 return low; 821 ctype<wchar_t>::do_scan_is(mask m, const char_type* low, const char_type* high) const 823 for (; low != high; ++low) 824 if (isascii(*low) && (ctype<char>::classic_table()[*low] & m) [all...] |
/external/libunwind_llvm/src/ |
UnwindCursor.hpp | 925 uint32_t low = 0; local 928 while (low < high) { 929 uint32_t mid = (low + high) / 2; 930 //if ( log ) fprintf(stderr, "\tmid=%d, low=%d, high=%d, *mid=0x%08X\n", 931 //mid, low, high, topIndex.functionOffset(mid)); 935 low = mid; 938 low = mid + 1; 944 const uint32_t firstLevelFunctionOffset = topIndex.functionOffset(low); 946 topIndex.functionOffset(low + 1); 948 sects.compact_unwind_section + topIndex.secondLevelPagesSectionOffset(low); [all...] |
/development/perftests/panorama/feature_mos/src/mosaic/ |
Delaunay.cpp | 77 int low, high; local 79 low = lo; 82 if ( low < (high-2) ) { 84 minx = sp[low]; 87 spsorty( sp, low, high); 91 split = low - 1 + (int) 92 (0.5 + ((double)(high-low+1) * ((double)lowrows / (double)rows))); 93 build( low, split, &ldo, &ldi, lowrows ); 105 else if (low >= (high - 1)) { // two or one points 106 a = makeEdge(sp[low], sp[high]) [all...] |
/external/compiler-rt/lib/builtins/ |
floattidf.c | 79 fb.u.s.low = (su_int)a; /* mantissa-low */
|