Searched defs:hi (Results 226 - 250 of 319) sorted by relevance

1234567891011>>

/external/qemu/disas/
H A Darm.c1476 "hi", "ls", "ge", "lt", "gt", "le", "al", "<und>", ""};
2892 /* Is signed, hi bits should be ones. */
3015 long hi = (given & 0x000f0000) >> 4; local
3017 long imm16 = hi | lo;
/external/regex-re2/re2/
H A Dparse.cc249 if (f[m].lo <= r && r <= f[m].hi)
313 // Add lo-hi to the class, along with their fold-equivalent characters.
314 // If lo-hi is already in the class, assume that the fold-equivalent
316 static void AddFoldedRange(CharClassBuilder* cc, Rune lo, Rune hi, int depth) { argument
326 if (!cc->AddRange(lo, hi)) // lo-hi was already there? we're done
329 while (lo <= hi) {
338 // Add in the result of folding the range lo - f->hi
341 Rune hi1 = min<Rune>(hi, f->hi);
1150 MaybeParseRepetition(StringPiece* sp, int* lo, int* hi) argument
1384 AddRangeFlags( Rune lo, Rune hi, Regexp::ParseFlags parse_flags) argument
2091 int lo, hi; local
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_x86_helpers.c372 DATA_UTYPE hi; \
380 hi = NARROWtoU(rr >>/*u*/ DATA_BITS); \
381 cf = (hi != 0); \
398 DATA_STYPE hi; \
406 hi = NARROWtoS(rr >>/*s*/ DATA_BITS); \
407 cf = (hi != (lo >>/*s*/ (DATA_BITS-1))); \
1273 // C = hi-half(dep1 x dep2) != lo-half(dep1 x dep2) >>s 31
2599 UInt hi = 0xFF & (UInt)ent->LdtEnt.Bits.BaseHi; local
2600 return (hi << 24) | (mid << 16) | lo;
2607 UInt hi local
[all...]
H A Dhost_mips_isel.c366 /* store hi,lo as Ity_I32's */
1684 HReg hi, lo; local
1691 iselInt64Expr(&hi, &lo, env, e->Iex.Unop.arg);
1692 addInstr(env, MIPSInstr_Alu(Malu_OR, r_src, lo, MIPSRH_Reg(hi)));
H A Dhost_s390_isel.c207 lookupIRTemp128(HReg *hi, HReg *lo, ISelEnv *env, IRTemp tmp) argument
213 *hi = env->vregmapHI[tmp];
1007 HReg r10, r11, hi, lo; local
1010 s390_isel_int128_expr(&hi, &lo, env, arg1);
1019 addInstr(env, s390_insn_move(8, r10, hi));
/external/valgrind/main/coregrind/m_aspacemgr/
H A Daspacemgr-linux.c1155 hi = nsegments_used-1; local
1157 /* current unsearched space is from lo to hi, inclusive. */
1158 if (lo > hi) {
1162 mid = (lo + hi) / 2;
1166 if (a < a_mid_lo) { hi = mid-1; continue; }
/external/valgrind/main/coregrind/
H A Dm_transtab.c941 UInt hi = lo + len - 1; local
943 UInt hiBits = (hi >> ECLASS_SHIFT) & mask;
H A Dvgdb.c940 int hi; local
980 for (hi = 1; hi < strlen(hexcommand); hi++)
981 cksum+=hexcommand[hi];
/external/valgrind/main/memcheck/
H A Dmc_leakcheck.c289 Int lo, mid, hi, retVal; local
293 hi = n_chunks-1;
295 // Invariant: current unsearched space is from lo to hi, inclusive.
296 if (lo > hi) break; // not found
298 mid = (lo + hi) / 2;
311 hi = mid-1;
/external/vixl/test/
H A Dtest-assembler-a64.cc1630 __ B(&wrong, hi);
1643 __ B(&wrong, hi);
5272 __ Fccmp(d18, d19, NFlag, hi);
8261 // x[0](hi) -> w[0]
8262 // x[0](lo) -> x[1](hi)
8265 // x[2](hi) -> x[2](hi)
8267 // x[2](hi) -> w[3]
8268 // x[2](lo) -> x[4](hi)
8269 // x[2](hi)
8373 uint64_t hi = stack[slot++]; local
[all...]
/external/webp/src/dsp/
H A Ddec_neon.c255 uint8x8x2_t lo, hi; local
258 hi.val[0] = vget_high_u8(p0);
259 hi.val[1] = vget_high_u8(q0);
261 Store2x8(hi, dst - 1 + 8 * stride, stride);
280 uint8x8x4_t lo, hi; local
284 INIT_VECTOR4(hi,
288 Store4x8(hi, dst - 2 + 8 * stride, stride);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
H A Dmkvparser.cpp3682 Cluster** hi = j;
3684 while (lo < hi)
3688 //[lo, hi) ?
3689 //[hi, j) > time_ns
3691 Cluster** const mid = lo + (hi - lo) / 2;
3692 assert(mid < hi);
3704 hi = mid;
3706 assert(lo <= hi);
3709 assert(lo == hi);
3733 Cluster** hi
5201 Cluster** hi = j; local
5457 Cluster** hi = j; local
[all...]
/external/chromium_org/v8/src/arm/
H A Dconstants-arm.h69 hi = 8 << 28, // C set, Z clear Unsigned higher. enumerator in enum:v8::internal::Condition
96 return hi;
97 case hi:
516 inline int Bits(int hi, int lo) const { argument
517 return (InstructionBits() >> lo) & ((2 << (hi - lo)) - 1);
521 inline int BitField(int hi, int lo) const { argument
522 return InstructionBits() & (((2 << (hi - lo)) - 1) << lo);
533 static inline int Bits(Instr instr, int hi, int lo) { argument
534 return (instr >> lo) & ((2 << (hi - lo)) - 1);
539 static inline int BitField(Instr instr, int hi, in argument
[all...]
H A Dlithium-arm.cc2043 LOperand* hi = UseRegister(instr->hi()); local
2044 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-arm.h2470 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2471 inputs_[0] = hi;
2475 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::V8_FINAL
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.cc2028 LOperand* hi = UseRegister(instr->hi()); local
2029 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc2048 LOperand* hi = UseRegister(instr->hi()); local
2049 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-ia32.h2470 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2471 inputs_[0] = hi;
2475 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::V8_FINAL
/external/chromium_org/v8/src/mips/
H A Dassembler-mips.cc1677 void Assembler::DoubleAsTwoUInt32(double d, uint32_t* lo, uint32_t* hi) { argument
1682 *hi = i >> 32;
H A Dlithium-mips.cc1989 LOperand* hi = UseRegister(instr->hi()); local
1990 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-mips.h2427 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2428 inputs_[0] = hi;
2432 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::V8_FINAL
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc1990 LOperand* hi = UseRegister(instr->hi()); local
1991 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
/external/chromium_org/v8/src/x87/
H A Dlithium-x87.cc2029 LOperand* hi = UseRegister(instr->hi()); local
2030 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-x87.h2490 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2491 inputs_[0] = hi;
2495 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::V8_FINAL
/external/chromium_org/v8/test/cctest/
H A Dtest-assembler-arm64.cc1789 __ B(&wrong, hi);
1802 __ B(&wrong, hi);
5808 __ Fccmp(d18, d19, NFlag, hi);
8893 // x[0](hi) -> w[0]
8894 // x[0](lo) -> x[1](hi)
8897 // x[2](hi) -> x[2](hi)
8899 // x[2](hi) -> w[3]
8900 // x[2](lo) -> x[4](hi)
8901 // x[2](hi)
9017 uint64_t hi = stack[slot++]; local
[all...]

Completed in 647 milliseconds

1234567891011>>