Searched refs:high (Results 76 - 100 of 531) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcryptomath.py125 #If the high-order bit is going to be set,
164 def getRandomNumber(low, high):
165 if low >= high:
167 howManyBits = numBits(high)
168 howManyBytes = numBytes(high)
175 if n >= low and n < high:
269 high = 2 ** bits - 30
270 p = getRandomNumber(low, high)
275 if p >= high:
276 p = getRandomNumber(low, high)
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
H A Daugmented_cb_corr.c33 int16_t high, /* (i) Lag to end at (typically 39) */
47 for (lagcount=low; lagcount<=high; lagcount++) {
23 WebRtcIlbcfix_AugmentedCbCorr( int16_t *target, int16_t *buffer, int16_t *interpSamples, int32_t *crossDot, int16_t low, int16_t high, int16_t scale) argument
/external/e2fsprogs/lib/blkid/
H A Dgetsize.c78 blkid_loff_t high, low; local
179 for (high = 1024; valid_offset(fd, high); high *= 2)
180 low = high;
181 while (low < high - 1) {
182 const blkid_loff_t mid = (low + high) / 2;
187 high = mid;
/external/smali/util/src/main/java/org/jf/util/
H A DSparseIntArray.java246 int high = start + len, low = start - 1, guess;
248 while (high - low > 1) {
249 guess = (high + low) / 2;
254 high = guess;
257 if (high == start + len)
259 else if (a[high] == key)
260 return high;
262 return ~high;
/external/qemu/fpu/
H A Dsoftfloat-specialize.h104 | The pattern for a default generated quadruple-precision NaN. The `high' and
135 uint64_t high, low; member in struct:__anon29638
215 z.high = ((uint64_t) float16_val(a))<<54;
226 uint16_t mantissa = a.high>>54;
318 z.high = ( (uint64_t) float32_val(a) )<<41;
329 uint32_t mantissa = a.high>>41;
337 ( ( (uint32_t) a.sign )<<31 ) | 0x7F800000 | ( a.high>>41 ) );
730 z.high = float64_val(a)<<12;
741 uint64_t mantissa = a.high>>12;
751 | ( a.high>>1
[all...]
/external/compiler-rt/test/builtins/Unit/
H A Daddvti3_test.c41 at.s.high, at.s.low, bt.s.high, bt.s.low, xt.s.high, xt.s.low,
42 expectedt.s.high, expectedt.s.low);
H A Dabsvti2_test.c42 at.s.high, at.s.low, xt.s.high, xt.s.low,
43 expectedt.s.high, expectedt.s.low);
/external/checkpolicy/
H A Dpolicy_define.h47 int define_port_context(unsigned int low, unsigned int high);
49 int define_iomem_context(unsigned long low, unsigned long high);
50 int define_ioport_context(unsigned long low, unsigned long high);
/external/chromium_org/tools/telemetry/telemetry/core/platform/
H A Dmsr_server_win.py72 high = ctypes.c_uint()
74 ctypes.byref(low), ctypes.byref(high))
75 return high.value << 32 | low.value
/external/compiler-rt/lib/builtins/
H A Dfloatdidf.c40 const double high = (int32_t)(a >> 32) * twop32; local
43 const double result = (high - twop52) + low.d;
101 fb.u.high = ((su_int)s & 0x80000000) | /* sign */
103 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
/external/libsepol/include/sepol/
H A Dport_record.h23 int low, int high, int proto,
27 int *low, int *high, int *proto);
49 extern void sepol_port_set_range(sepol_port_t * port, int low, int high);
/external/vixl/examples/
H A Dcheck-bounds.cc33 // uint64_t check_bounds(uint64_t value, uint64_t low, uint64_t high)
37 // high -> x2
43 // Now we will compare 'value' and 'high' (x0 and x2) but only if the 'pl'
62 uint64_t value, uint64_t low, uint64_t high) {
65 simulator->set_xreg(2, high);
70 low, high);
61 run_function(Simulator *simulator, Label *function, uint64_t value, uint64_t low, uint64_t high) argument
/external/oprofile/module/x86/
H A Dop_model_p4.c361 #define ESCR_READ(escr, high, ev, i) do {rdmsr(ev->bindings[(i)].escr_address, (escr), (high));} while (0)
362 #define ESCR_WRITE(escr, high, ev, i) do {wrmsr(ev->bindings[(i)].escr_address, (escr), (high));} while (0)
372 #define CCCR_READ(low, high, i) do {rdmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0)
373 #define CCCR_WRITE(low, high, i) do {wrmsr(p4_counters[(i)].cccr_address, (low), (high));} while (0)
488 unsigned int high = 0; local
512 ESCR_READ(escr, high, e
549 unsigned int low, high; local
627 unsigned long ctr, low, high, stag, real; local
674 unsigned int low, high, stag; local
691 unsigned int low, high, stag; local
[all...]
/external/openssl/crypto/bn/
H A Dbn_lcl.h268 # define BN_UMULT_LOHI(low,high,a,b) \
270 : "=a"(low),"=d"(high) \
281 # define BN_UMULT_LOHI(low,high,a,b) ((low)=_umul128((a),(b),&(high)))
287 # define BN_UMULT_LOHI(low,high,a,b) ({ \
289 (high)=ret>>64; (low)=ret; })
297 # define BN_UMULT_LOHI(low,high,a,b)\
299 : "=l"(low),"=h"(high) \
348 BN_ULONG high,low,ret,tmp=(a); \
350 BN_UMULT_LOHI(low,high,
[all...]
/external/skia/src/gpu/
H A DGrTHashTable.h96 int high = count - 1; local
98 while (high > low) {
99 int index = (low + high) >> 1;
103 high = index;
108 if (Key::Equals(*array[high], key)) {
111 SkASSERT(0 == high || Key::LessThan(*array[high - 1], key));
112 return high;
116 if (Key::LessThan(*array[high], key)) {
117 high
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatBox.h101 void expandTo(const FloatPoint3D& low, const FloatPoint3D& high) argument
103 ASSERT(low.x() <= high.x());
104 ASSERT(low.y() <= high.y());
105 ASSERT(low.z() <= high.z());
111 float maxX = std::max(right(), high.x());
112 float maxY = std::max(bottom(), high.y());
113 float maxZ = std::max(front(), high.z());
/external/chromium_org/third_party/android_opengl/etc1/
H A Detc1.cpp222 etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3]; local
225 if (high & 2) {
227 int rBase = high >> 27;
228 int gBase = high >> 19;
229 int bBase = high >> 11;
231 r2 = convertDiff(rBase, high >> 24);
233 g2 = convertDiff(gBase, high >> 16);
235 b2 = convertDiff(bBase, high >> 8);
238 r1 = convert4To8(high >> 28);
239 r2 = convert4To8(high >> 2
255 etc1_uint32 high; member in struct:__anon11508::__anon11509
[all...]
/external/chromium_org/third_party/skia/third_party/etc1/
H A Detc1.cpp209 etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3]; local
212 if (high & 2) {
214 int rBase = high >> 27;
215 int gBase = high >> 19;
216 int bBase = high >> 11;
218 r2 = convertDiff(rBase, high >> 24);
220 g2 = convertDiff(gBase, high >> 16);
222 b2 = convertDiff(bBase, high >> 8);
225 r1 = convert4To8(high >> 28);
226 r2 = convert4To8(high >> 2
242 etc1_uint32 high; member in struct:__anon15422
[all...]
/external/skia/third_party/etc1/
H A Detc1.cpp209 etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3]; local
212 if (high & 2) {
214 int rBase = high >> 27;
215 int gBase = high >> 19;
216 int bBase = high >> 11;
218 r2 = convertDiff(rBase, high >> 24);
220 g2 = convertDiff(gBase, high >> 16);
222 b2 = convertDiff(bBase, high >> 8);
225 r1 = convert4To8(high >> 28);
226 r2 = convert4To8(high >> 2
242 etc1_uint32 high; member in struct:__anon30824
[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;
383 high = 8*64*1024-8; /* 16-bit field, *8 scaling */
393 high = 16*64*1024-16; /* 16-bit field, *16 scaling */
405 if (intv > high) {
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);
418 add_span(add_span_data, bc, span, &code->off, low, high);
472 long intv, low, high, mask; local
495 size = 0; low = 8; high
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterToUTF8Buffered.java123 * the 16 low-order bits of the given integer value; the 16 high-order bits
214 // Adjust the end of the chunk if it ends on a high char
231 * and it is the high char of a high/low pair with
234 * The char array incorrectly ends in a high char
235 * of a high/low surrogate pair, but there is
236 * no corresponding low as the high is the last char
281 * Unicode: [1101 10ww] [wwzz zzyy] (high surrogate)
287 char high, low;
288 high
[all...]
/external/chromium-trace/trace-viewer/src/base/
H A Dsorted_array_utils.js33 var high = ary.length - 1;
36 while (low <= high) {
37 i = Math.floor((low + high) / 2);
42 high = i - 1; continue;
45 high = i - 1;
124 * @param {number} loVal The high value for the search, non inclusive.
/external/libsepol/src/
H A Dcontext_record.c212 char *tmp = NULL, *low, *high; local
234 if (!(high = strchr(low, ':')))
237 *high++ = '\0';
240 low = high;
243 if (!(high = strchr(low, ':')))
246 *high++ = '\0';
249 low = high;
252 if (!(high = strchr(low, ':'))) {
256 *high++ = '\0';
259 low = high;
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/
H A Drate_hist.c24 int high; member in struct:hist_bucket
58 hist->bucket[i].high = 0;
114 if (hist->bucket[idx].high < avg_bitrate)
115 hist->bucket[idx].high = (int)avg_bitrate;
157 bucket[merge_bucket].high = bucket[small_bucket].high;
160 bucket[small_bucket].high = bucket[merge_bucket].high;
165 assert(bucket[merge_bucket].low != bucket[merge_bucket].high);
193 switch ((int)(log(bucket[buckets - 1].high) / lo
[all...]
/external/libvpx/libvpx/
H A Drate_hist.c24 int high; member in struct:hist_bucket
58 hist->bucket[i].high = 0;
114 if (hist->bucket[idx].high < avg_bitrate)
115 hist->bucket[idx].high = (int)avg_bitrate;
157 bucket[merge_bucket].high = bucket[small_bucket].high;
160 bucket[small_bucket].high = bucket[merge_bucket].high;
165 assert(bucket[merge_bucket].low != bucket[merge_bucket].high);
193 switch ((int)(log(bucket[buckets - 1].high) / lo
[all...]

Completed in 645 milliseconds

1234567891011>>