HomeSort by relevance Sort by last modified time
    Searched refs:hi (Results 201 - 225 of 479) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \
367 real_from_integer (&(r), mode, lo, hi, 0)
369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \
370 real_from_integer (&(r), mode, lo, hi, 1)
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \
367 real_from_integer (&(r), mode, lo, hi, 0)
369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \
370 real_from_integer (&(r), mode, lo, hi, 1)
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \
367 real_from_integer (&(r), mode, lo, hi, 0)
369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \
370 real_from_integer (&(r), mode, lo, hi, 1)
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 366 #define REAL_VALUE_FROM_INT(r, lo, hi, mode) \
367 real_from_integer (&(r), mode, lo, hi, 0)
369 #define REAL_VALUE_FROM_UNSIGNED_INT(r, lo, hi, mode) \
370 real_from_integer (&(r), mode, lo, hi, 1)
  /system/core/libpixelflinger/
fixed.cpp 260 uint32_t hi = ab>>32; local
265 if (hi >= c) {
268 } else if (hi == 0) {
273 uint32_t r = hi;
  /external/oprofile/libpp/
format_output.cpp 781 size_t & detail_index, size_t const lo, size_t const hi)
783 if (!has_sample_counts(symb->sample.counts, lo, hi))
793 for (size_t p = lo; p <= hi; ++p) {
837 symbol_entry const * symb, size_t lo, size_t hi, bool is_module)
846 for (size_t p = lo; p <= hi; ++p) {
876 string detail_str = output_symbol_details(symb, sd.index, lo, hi);
945 size_t lo, size_t hi, bool is_module, tag_t tag)
958 for (size_t p = lo; p <= hi; ++p)
1002 symbol_entry const * symb, size_t lo, size_t hi, bool is_module)
1009 for (size_t p = lo; p <= hi; ++p
    [all...]
  /external/regex-re2/re2/
prog.h 90 void InitByteRange(int lo, int hi, int foldcase, uint32 out);
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } function in class:re2::Prog::Inst
224 // lo-hi (inclusive) are treated as different from bytes outside the range.
227 void MarkByteRange(int lo, int hi);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwb_math_op.cpp 51 int16 hi, lo : L_32 = hi<<16 + lo<<1 (DPF - Double Precision Format)
560 * L_32 = hi<<16 + lo<<1 *
563 * hi and lo are 16 bit signed integers. *
584 * hi : b16 to b31 of L_32
585 * lo : (L_32 - hi<<16)>>1
589 void int32_to_dpf(int32 L_32, int16 *hi, int16 *lo)
591 *hi = (int16)(L_32 >> 16);
592 *lo = (int16)((L_32 - (*hi << 16)) >> 1);
609 * hi1 hi part of first numbe
    [all...]
  /external/freetype/src/base/
fttrigon.c 68 FT_UInt32 v1, v2, k1, k2, hi, lo1, lo2, lo3; local
80 hi = k1 * v1;
87 hi += lo1 >> 16;
89 hi += (FT_UInt32)0x10000UL;
91 val = (FT_Fixed)hi;
  /external/libvorbis/lib/
sharedbook.c 395 /* now fill in 'unused' entries in the firsttable with hi/lo search
399 long lo=0,hi=0; local
405 while( hi<n && word>=(c->codelist[hi]&mask))hi++;
412 unsigned long hival=n-hi;
  /external/skia/legacy/src/utils/
SkParseColor.cpp 405 int hi = colorNameSize - 3; // back off to beginning of yellowgreen local
406 while (lo <= hi) {
407 int mid = (hi + lo) >> 1;
425 } else if (hi == mid)
428 hi = mid;
  /external/skia/src/utils/
SkParseColor.cpp 405 int hi = colorNameSize - 3; // back off to beginning of yellowgreen local
406 while (lo <= hi) {
407 int mid = (hi + lo) >> 1;
425 } else if (hi == mid)
428 hi = mid;
  /external/icu4c/common/
bmpset.cpp 242 int32_t BMPSet::findCodePoint(UChar32 c, int32_t lo, int32_t hi) const {
259 if (lo >= hi || c >= list[hi-1])
260 return hi;
262 // invariant: c < list[hi]
264 int32_t i = (lo + hi) >> 1;
268 hi = i;
273 return hi;
  /external/v8/test/cctest/
test-strtod.cc 406 static uint32_t hi = 0; local
411 if (hi == 0) hi = 0xbfe166e7;
415 hi = 36969 * (hi & 0xFFFF) + (hi >> 16);
417 return (hi << 16) + (lo & 0xFFFF);
  /external/valgrind/main/VEX/priv/
guest_amd64_helpers.c 413 DATA_UTYPE hi; \
421 hi = NARROWtoU(rr >>/*u*/ DATA_BITS); \
422 cf = (hi != 0); \
439 DATA_STYPE hi; \
447 hi = NARROWtoS(rr >>/*s*/ DATA_BITS); \
448 cf = (hi != (lo >>/*s*/ (DATA_BITS-1))); \
464 ULong lo, hi; \
465 mullU64( (ULong)CC_DEP1, (ULong)CC_DEP2, &hi, &lo ); \
466 cf = (hi != 0); \
482 Long lo, hi; \
2784 ULong hi, lo, tmp, A[16]; local
    [all...]
  /external/icu4c/tools/tzcode/
localtime.c 1296 register int hi = sp->timecnt; local
1688 register time_t hi; local
    [all...]
  /external/valgrind/main/exp-sgcheck/
pc_common.c 148 Addr hi; member in struct:__anon17022::__anon17023::__anon17027
204 Addr lo, Addr hi, Seg* seglo, Seg* seghi )
211 xe.XE.SysParam.hi = hi;
544 Addr hi = xe->XE.SysParam.hi; local
610 hi, hi-Seg__addr(seghi), Seg__size(seghi) );
634 hi, hi-Seg__addr(seghi), Seg__size(seghi) )
    [all...]
  /external/openssl/crypto/aes/asm/
aes-x86_64.pl 64 sub hi() { my $r=shift; $r =~ s/%[er]([a-d])x/%\1h/; $r; } subroutine
102 movzb `&hi("$s1")`,$acc0
103 movzb `&hi("$s2")`,$acc1
109 movzb `&hi("$s3")`,$acc0
111 movzb `&hi("$s0")`,$acc2
127 movzb `&hi("$s3")`,$acc0
128 movzb `&hi("$s0")`,$acc1
135 movzb `&hi("$s1")`,$acc1
136 movzb `&hi("$s2")`,$acc2
162 movzb `&hi("$s1")`,$acc
    [all...]
  /bionic/libc/tzcode/
localtime.c 1358 register int hi = sp->timecnt; local
1775 register time_t hi; local
    [all...]
  /external/qemu/tcg/hppa/
tcg-target.c 358 uint32_t hi, lo; local
359 hi = arg >> 11;
362 tcg_out32(s, INSN_LDIL | INSN_R2(ret) | reassemble_21(hi));
374 uint32_t hi, lo, op; local
376 hi = offset >> 11;
384 tcg_out32(s, op | reassemble_21(hi));
470 static inline void tcg_out_shd(TCGContext *s, int ret, int hi, int lo,
474 tcg_out32(s, INSN_SHD | INSN_R1(hi) | INSN_R2(lo) | INSN_T(ret)
478 static void tcg_out_vshd(TCGContext *s, int ret, int hi, int lo, int creg)
481 tcg_out32(s, INSN_VSHD | INSN_T(ret) | INSN_R1(hi) | INSN_R2(lo))
627 tcg_target_long val, hi, lo, disp; local
1226 uint32_t hi, lo; local
    [all...]
  /external/eigen/Eigen/src/Core/arch/NEON/
PacketMath.h 190 float32x2_t lo, hi; local
192 hi = vdup_n_f32(*(from+1));
193 return vcombine_f32(lo, hi);
197 int32x2_t lo, hi; local
199 hi = vdup_n_s32(*(from+1));
200 return vcombine_s32(lo, hi);
  /ndk/sources/cxx-stl/llvm-libc++/src/
debug.cpp 191 size_t hi = hash<void*>()(__i) % static_cast<size_t>(__iend_ - __ibeg_); local
192 __i_node* p = __ibeg_[hi];
204 __ibeg_[hi] = p->__next_;
460 size_t hi = hash<void*>()(__i) % static_cast<size_t>(__iend_ - __ibeg_); local
461 __i_node* p = __ibeg_[hi];
462 __i_node* r = __ibeg_[hi] = (__i_node*)malloc(sizeof(__i_node));
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 237 inline int hi(int c) const { return format.c[c].h; } function in struct:android::GGLAssembler::pixel_t
242 inline int component_size(int c) const { return hi(c) - low(c); }
251 component_t(int r, int lo, int hi, int f=0)
252 : reg_t(r, f), h(hi), l(lo) {
263 void setTo(int r, int lo=0, int hi=0, int f=0) {
264 reg_t::setTo(r, f); h=hi; l=lo;
  /external/icu4c/test/perf/collationperf/
collperf.cpp 497 int hi = gNumFileLines-1; local
501 int newGuess = (hi + lo) / 2;
512 hi = guess;
535 int hi = gNumFileLines-1; local
539 int newGuess = (hi + lo) / 2;
564 hi = guess;
586 int hi = gNumFileLines-1; local
590 int newGuess = (hi + lo) / 2;
620 hi = guess;
637 int hi = gNumFileLines-1 local
    [all...]
  /sdk/emulator/mksdcard/
mksdcard.c 69 unsigned short lo, hi, mid; local
74 hi = (unsigned short)(tm.tm_min + (tm.tm_hour << 8) + (tm.tm_year + 1900));
76 return lo + (hi << 16);

Completed in 3472 milliseconds

1 2 3 4 5 6 7 891011>>