Searched defs:lo (Results 1 - 25 of 275) sorted by relevance

1234567891011

/external/compiler-rt/test/builtins/Unit/ppc/
H A DDD.h10 double lo; member in struct:__anon3496::__anon3497
H A Dfloatditf_test.h4 double lo; member in struct:testCase
[all...]
H A Dfloatunditf_test.h4 double lo; member in struct:testCase
[all...]
/external/libunwind/src/mi/
H A Dflush_cache.c29 unw_flush_cache (unw_addr_space_t as, unw_word_t lo, unw_word_t hi) argument
49 ignores the flush range arguments (lo-hi). This is OK because
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_test.h83 uint32_t hi, lo; local
84 __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi));
85 return ((uint64_t)lo) | (((uint64_t)hi) << 32);
/external/arm-neon-tests/
H A Dref_dsp.c51 int32_t lo, hi; local
316 /* int32_t smlalbb(int32_t *lo, int32_t *hi, int32_t val1, int32_t val2); */
320 lo = 0x9ABCDEF0;
321 fprintf(ref_file, "smlalbb(&%#x, &%#x, %#x, %#x) = ", lo, hi, svar1, svar2);
322 smlalbb(&lo, &hi, svar1, svar2);
323 fprintf(ref_file, "%#x%#x\n", hi, lo);
325 lo = 0x9ABCDEF0;
326 fprintf(ref_file, "smlalbt(&%#x, &%#x, %#x, %#x) = ", lo, hi, svar1, svar2);
327 smlalbt(&lo, &hi, svar1, svar2);
328 fprintf(ref_file, "%#x%#x\n", hi, lo);
[all...]
/external/libdrm/
H A Dxf86drmRandom.c122 unsigned long lo; local
125 lo = s->seed % s->q;
126 s->seed = s->a * lo - s->r * hi;
127 if ((s->a * lo) <= (s->r * hi)) s->seed += s->m;
/external/regex-re2/re2/
H A Dunicode_casefold.h54 uint32 lo; member in struct:re2::CaseFold
H A Dunicode_groups.h27 uint16 lo; member in struct:re2::URange16
33 uint32 lo; member in struct:re2::URange32
/external/regex-re2/util/
H A Drandom.cc15 uint32 lo = A * (int32)(seed_ & 0xFFFF); local
17 lo += (hi & 0x7FFF) << 16;
18 if (lo > M) {
19 lo &= M;
20 ++lo;
22 lo += hi >> 15;
23 if (lo > M) {
24 lo &= M;
25 ++lo;
27 return (seed_ = (int32) lo);
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DOutOfRangeException.java33 private final Number lo; field in class:OutOfRangeException
41 * @param lo Lower bound.
45 Number lo,
47 super(LocalizedFormats.OUT_OF_RANGE_SIMPLE, wrong, lo, hi);
48 this.lo = lo;
55 return lo;
44 OutOfRangeException(Number wrong, Number lo, Number hi) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
H A DBrentOptimizer.java60 * Find the minimum of the function within the interval {@code (lo, hi)}.
62 * If the function is defined on the interval {@code (lo, hi)}, then
72 * @param lo Lower bound of the interval.
73 * @param mid Point inside the interval {@code [lo, hi]}.
83 double lo, double mid, double hi,
94 if (lo < hi) {
95 a = lo;
99 b = lo;
82 localMin(boolean isMinim, double lo, double mid, double hi, double eps, double t) argument
/external/dhcpcd-6.8.2/compat/
H A Dstrtoi.c36 intmax_t lo, intmax_t hi, int *rstatus)
61 if (r < lo) {
64 return lo;
76 uintmax_t lo, uintmax_t hi, int *rstatus)
101 if (r < lo) {
104 return lo;
35 strtoi(const char * __restrict nptr, char ** __restrict endptr, int base, intmax_t lo, intmax_t hi, int *rstatus) argument
75 strtou(const char * __restrict nptr, char ** __restrict endptr, int base, uintmax_t lo, uintmax_t hi, int *rstatus) argument
/external/freetype/src/base/
H A Dmd5.h35 MD5_u32plus lo, hi; member in struct:__anon6631
/external/google-breakpad/src/client/linux/dump_writer_common/
H A Dthread_info.h75 uint32_t lo[3]; member in struct:google_breakpad::ThreadInfo
/external/google-breakpad/src/common/mac/
H A Dfile_id.cc90 int lo = (identifier[idx]) & 0x0F; local
98 static_cast<char>((lo >= 10) ? ('A' + lo - 10) : ('0' + lo));
/external/guava/guava-testlib/src/com/google/common/escape/testing/
H A DEscaperAsserts.java113 * Asserts that a Unicode escaper escapes the given hi/lo surrogate pair into
119 * @param lo the low surrogate pair character
122 String expected, char hi, char lo) {
124 int cp = Character.toCodePoint(hi, lo);
121 assertUnicodeEscaping(UnicodeEscaper escaper, String expected, char hi, char lo) argument
/external/icu/icu4c/source/common/
H A Dbmpset.h83 * lo=findCodePoint(start) and
85 * with 0<=lo<=hi<len.
86 * findCodePoint(c) defaults to lo=0 and hi=len-1.
89 * @param lo The lowest index to be returned.
91 * @return the smallest integer i in the range lo..hi,
94 int32_t findCodePoint(UChar32 c, int32_t lo, int32_t hi) const;
96 inline UBool containsSlow(UChar32 c, int32_t lo, int32_t hi) const;
157 inline UBool BMPSet::containsSlow(UChar32 c, int32_t lo, int32_t hi) const { argument
158 return (UBool)(findCodePoint(c, lo, hi) & 1);
/external/libunwind/src/coredump/
H A D_UPT_get_dyn_info_list_addr.c37 unsigned long lo, hi, off; local
46 while (maps_next (&mi, &lo, &hi, &off))
59 di = tdep_find_unwind_table (&ui->edi, as, path, lo, off);
/external/libunwind/src/ptrace/
H A D_UPT_get_dyn_info_list_addr.c36 unsigned long lo, hi, off; local
44 while (maps_next (&mi, &lo, &hi, &off))
53 if (tdep_find_unwind_table (&ui->edi, as, path, lo, off, 0) > 0)
/external/pdfium/third_party/freetype/src/base/
H A Dmd5.h35 MD5_u32plus lo, hi; member in struct:__anon15804
/external/regex-re2/re2/testing/
H A Dcompile_test.cc139 int lo; member in struct:re2::UTF8ByteRange
165 for (int j = utf8ranges[i].lo; j <= utf8ranges[i].hi; j++)
/external/bison/lib/
H A Dfloat.in.h98 struct { unsigned int lo; unsigned int hi; unsigned int exponent; } xd; member in struct:gl_long_double_union::__anon538
151 struct { double hi; double lo; } dd; member in struct:gl_long_double_union::__anon539
/external/boringssl/src/crypto/modes/
H A Dpolyval.c38 uint64_t lo = b->u[1]; local
41 hi |= lo << 63;
42 lo >>= 1;
43 lo ^= ((uint64_t) constant_time_select(carry, 0xe1, 0)) << 56;
45 b->u[0] = CRYPTO_bswap8(lo);
/external/clang/test/Sema/
H A Dext_vector_components.c71 float2 lo(float3 x) { return x.lo; } function

Completed in 1769 milliseconds

1234567891011