Searched defs:hi (Results 226 - 250 of 326) 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/ui/gfx/
H A Drender_text.cc1252 size_t hi = text.length() - 1; local
1254 for (size_t guess = (lo + hi) / 2; lo <= hi; guess = (lo + hi) / 2) {
1306 hi = guess - 1;
1308 if (hi < lo)
1309 lo = hi;
/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:
458 inline int Bits(int hi, int lo) const { argument
459 return (InstructionBits() >> lo) & ((2 << (hi - lo)) - 1);
463 inline int BitField(int hi, int lo) const { argument
464 return InstructionBits() & (((2 << (hi - lo)) - 1) << lo);
475 static inline int Bits(Instr instr, int hi, int lo) { argument
476 return (instr >> lo) & ((2 << (hi - lo)) - 1);
481 static inline int BitField(Instr instr, int hi, in argument
[all...]
H A Dlithium-arm.cc2069 LOperand* hi = UseRegister(instr->hi()); local
2070 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-arm.h2514 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2515 inputs_[0] = hi;
2519 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::FINAL
/external/chromium_org/v8/src/arm64/
H A Dlithium-arm64.cc2062 LOperand* hi = UseRegister(instr->hi()); local
2063 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
/external/chromium_org/v8/src/ia32/
H A Dlithium-ia32.cc2072 LOperand* hi = UseRegister(instr->hi()); local
2073 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-ia32.h2520 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2521 inputs_[0] = hi;
2525 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::FINAL
/external/chromium_org/v8/src/mips/
H A Dlithium-mips.cc2018 LOperand* hi = UseRegister(instr->hi()); local
2019 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-mips.h2474 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2475 inputs_[0] = hi;
2479 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::FINAL
/external/chromium_org/v8/src/mips64/
H A Dlithium-mips64.cc2016 LOperand* hi = UseRegister(instr->hi()); local
2017 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-mips64.h2458 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2459 inputs_[0] = hi;
2463 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::FINAL
/external/chromium_org/v8/src/x64/
H A Dlithium-x64.cc2026 LOperand* hi = UseRegister(instr->hi()); local
2027 return DefineAsRegister(new(zone()) LConstructDouble(hi, lo));
H A Dlithium-x64.h2501 LConstructDouble(LOperand* hi, LOperand* lo) { argument
2502 inputs_[0] = hi;
2506 LOperand* hi() { return inputs_[0]; } function in class:v8::internal::FINAL

Completed in 725 milliseconds

1234567891011>>