HomeSort by relevance Sort by last modified time
    Searched refs:high (Results 451 - 475 of 1979) sorted by null

<<11121314151617181920>>

  /art/runtime/native/
libcore_util_CharsetUtils.cc 222 jchar high = static_cast<jchar>(ch); local
224 if (!U16_IS_SURROGATE_LEAD(high) || !U16_IS_SURROGATE_TRAIL(low)) {
232 ch = U16_GET_SUPPLEMENTARY(high, low);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 324 final int high = FastMath.min(iMax - 1, (iMin + 9 * iMax) / 10); local
327 } else if (index > high) {
328 index = high;
  /external/eigen/Eigen/src/Core/arch/AVX/
PacketMath.h 278 __m128 high = _mm256_extractf128_ps(from, 1); local
279 to[stride*4] = _mm_cvtss_f32(high);
280 to[stride*5] = _mm_cvtss_f32(_mm_shuffle_ps(high, high, 1));
281 to[stride*6] = _mm_cvtss_f32(_mm_shuffle_ps(high, high, 2));
282 to[stride*7] = _mm_cvtss_f32(_mm_shuffle_ps(high, high, 3));
289 __m128d high = _mm256_extractf128_pd(from, 1); local
290 to[stride*2] = _mm_cvtsd_f64(high);
    [all...]
  /external/libevent/
bufferevent_pair.c 162 if (dst->wm_read.high) {
164 if (dst_size < dst->wm_read.high) {
165 n = dst->wm_read.high - dst_size;
bufferevent_openssl.c 175 * high-water mark. */
176 if (bufev->wm_write.high && bufev->wm_write.high <= (outlen+inlen)) {
177 if (bufev->wm_write.high <= outlen) {
182 inlen = bufev->wm_write.high - outlen;
756 if (wm->high) {
757 if (evbuffer_get_length(input) >= wm->high) {
761 result = wm->high - evbuffer_get_length(input);
777 * Read from the underlying buffer until we block or we hit our high-water
811 * overrun our read high-watermark (somewha
    [all...]
  /external/libxml2/
genUnicode.py 312 (low, high) = range
313 if high < 0x10000:
332 pline += "{%s, %s}" % (hex(low), hex(high))
352 int low, high, mid, cmp;
358 high = tptr->numentries - 1;
360 while (low <= high) {
361 mid = (low + high) / 2;
365 high = mid - 1;
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
os.h 150 long low, high; local
151 asm volatile("rdtsc" : "=a"(low), "=d"(high));
152 return (low | ((uint64_t)high << 32));
  /external/pdfium/core/fpdfapi/font/
cpdf_tounicodemap.cpp 158 ByteString low, high; local
163 high = parser.GetWord();
166 (lowcode & 0xffffff00) | (StringToCode(high.AsStringView()) & 0xff);
  /external/tensorflow/tensorflow/python/framework/
tensor_spec.py 172 high = dtype.max / 2
175 high = dtype.max
178 maximum = getattr(spec, "maximum", high)
  /external/tensorflow/tensorflow/python/kernel_tests/
linalg_grad_test.py 65 low=-1.0, high=1.0,
107 low=-1.0, high=1.0,
112 low=-1.0, high=1.0,
  /libcore/libart/src/main/java/java/lang/
StringFactory.java 49 public static String newStringFromBytes(byte[] data, int high) {
50 return newStringFromBytes(data, high, 0, data.length);
58 public static native String newStringFromBytes(byte[] data, int high, int offset, int byteCount);
  /system/vold/
MoveStorage.cpp 32 #define CONSTRAIN(amount, low, high) ((amount) < (low) ? (low) : ((amount) > (high) ? (high) : (amount)))
  /test/vts/utils/python/cpu/
cpu_frequency_scaling.py 79 high = stdout_split[1] if len(stdout_split) == 2 else low
80 logging.info("present cpus: %s : %s" % (low, high))
81 return int(low), int(high) + 1
  /external/gptfdisk/
gptcl.cc 66 uint64_t low, high, startSector, endSector, sSize; local
294 high = FindLastInFree(low);
295 startSector = IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low);
296 endSector = IeeeToInt(GetString(newPartInfo, 3), sSize, startSector, high, high);
  /external/one-true-awk/
lex.c 439 int cond, low, mid, high; local
442 high = n - 1;
443 while (low <= high) {
444 mid = (low + high) / 2;
446 high = mid - 1;
  /external/v8/src/
fast-dtoa.cc 329 // * low, w and high are correct up to 1 ulp (unit in the last place). That
331 // * low.e() == w.e() == high.e()
332 // * low < w < high, and taking into account their error: low~ <= high~
338 // such that LOW < buffer * 10^kappa < HIGH, where LOW and HIGH are the
339 // correct values of low and high (without their error).
359 // represent 'w' we can stop. Everything inside the interval low - high
360 // represents w. However we have to pay attention to low, high and w's
364 DiyFp high,
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
Integer.java 810 * During VM initialization, java.lang.Integer.IntegerCache.high property
    [all...]
  /external/honggfuzz/
sancov.c 275 uint64_t high = size - 1; local
276 uint64_t mid = high;
278 while (buf[high] != buf[low] && key >= buf[low] && key <= buf[high]) {
279 mid = low + (key - buf[low]) * ((high - low) / (buf[high] - buf[low]));
283 high = mid - 1;
  /external/icu/icu4c/source/common/
uset.cpp 331 * - some supplementary: (length|0x8000) (bmpLength<length) BMP, .., BMP, supp-high, supp-low, ..
441 uint16_t high=(uint16_t)(c>>16), low=(uint16_t)c; local
445 if (high < array[base] || (high==array[base] && low<array[base+1])) {
447 } else if (high < array[base+hi] || (high==array[base+hi] && low<array[base+hi+1])) {
453 } else if (high < array[iabs] || (high==array[iabs] && low<array[iabs+1])) {
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
vector_support_library.cc 108 const llvm::APFloat& high) {
111 CHECK(low.compare(high) == llvm::APFloat::cmpLessThan);
115 GetConstantFloat(type, high), ir_builder_);
387 llvm::Value* high = local
390 high = AddInternal(ExtractHighHalf(init_values), high);
396 i < 4 ? low : high, ir_builder()->getInt32(i % 4), name());
  /external/tensorflow/tensorflow/python/ops/
image_grad_test.py 279 def _randomUniformAvoidAnchors(self, low, high, anchors, radius, num_samples):
282 We generate uniform samples in [low, high], then reject those that are less
288 high: The upper end of the interval.
296 self.assertTrue(low < high)
300 self.assertTrue(2 * radius * num_anchors < 0.5 * (high - low))
304 sample = np.random.uniform(low, high)
324 low, high = -0.5, 1.5 # Also covers the case of extrapolation.
345 low, high, np.linspace(0, 1, image_height), radius, 2)
347 low, high, np.linspace(0, 1, image_width), radius, 2)
  /external/selinux/sandbox/
sandbox 150 high = int(highc[1:]) + 1
151 if high - low == 0:
154 return low, high
160 low, high = get_range()
164 total = high - low
168 i1 = random.randrange(low, high)
169 i2 = random.randrange(low, high)
  /toolchain/binutils/binutils-2.27/binutils/
ieee.c 1010 /* BB3: High level module block begin. We don't have to do
1657 bfd_vma low, high, signedp, size; local
1809 bfd_vma high; local
3644 bfd_vma high; member in struct:ieee_range
3789 bfd_signed_vma high; member in struct:ieee_modified_array_type
4970 bfd_vma low, high; local
5039 bfd_vma low, high; local
    [all...]
  /external/speex/libspeex/
sb_celp.c 233 st->high=(spx_word16_t*)speex_alloc((st->windowSize-st->frame_size)*sizeof(spx_word16_t));
284 speex_free(st->high);
315 spx_word16_t *high; local
335 high = in+st->frame_size;
337 /* High-band buffering / sync with low band */
339 qmf_decomp(in, h0, low, high, st->full_frame_size, QMF_ORDER, st->h0_mem, stack);
345 /*FIXME: Are the two signals (low, high) in sync? */
347 e_high = compute_rms16(high, st->frame_size);
356 high = high - (st->windowSize-st->frame_size)
    [all...]
  /external/syslinux/core/fs/xfs/
xfs_dir2.c 356 int high; local
390 for (lep = leaf->ents, low = 0, high = be16_to_cpu(leaf->hdr.count) - 1;
391 low <= high; ) {
392 mid = (low + high) >> 1;
398 high = mid - 1;
612 int high; local
696 for (lep = leaf->ents, low = 0, high = be16_to_cpu(leaf->hdr.count) - 1;
697 low <= high; ) {
698 mid = (low + high) >> 1;
705 high = mid - 1
    [all...]

Completed in 1039 milliseconds

<<11121314151617181920>>