HomeSort by relevance Sort by last modified time
    Searched refs:new_constant (Results 1 - 13 of 13) sorted by null

  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_32.c 157 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
161 inst[0] = (inst[0] & 0xffc00000) | ((new_constant >> 10) & 0x3fffff);
162 inst[1] = (inst[1] & 0xfffffc00) | (new_constant & 0x3ff);
sljitNativePPC_32.c 262 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
266 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
267 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff);
sljitNativeMIPS_64.c 460 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
464 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff);
465 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff);
466 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
467 inst[5] = (inst[5] & 0xffff0000) | (new_constant & 0xffff);
sljitNativePPC_64.c 412 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
416 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 48) & 0xffff);
417 inst[1] = (inst[1] & 0xffff0000) | ((new_constant >> 32) & 0xffff);
418 inst[3] = (inst[3] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
419 inst[4] = (inst[4] & 0xffff0000) | (new_constant & 0xffff);
sljitNativeMIPS_32.c 359 SLJIT_API_FUNC_ATTRIBUTE void sljit_set_const(sljit_uw addr, sljit_sw new_constant)
363 inst[0] = (inst[0] & 0xffff0000) | ((new_constant >> 16) & 0xffff);
364 inst[1] = (inst[1] & 0xffff0000) | (new_constant & 0xffff);
sljitNativeARM_32.c 507 static SLJIT_INLINE void inline_set_const(sljit_uw addr, sljit_sw new_constant, sljit_s32 flush)
515 src2 = get_imm(new_constant);
524 src2 = get_imm(~new_constant);
544 *ptr = new_constant;
548 inst[0] = MOVW | (inst[0] & 0xf000) | ((new_constant << 4) & 0xf0000) | (new_constant & 0xfff);
549 inst[1] = MOVT | (inst[1] & 0xf000) | ((new_constant >> 12) & 0xf0000) | ((new_constant >> 16) & 0xfff);
    [all...]
sljitLir.h     [all...]
sljitNativeTILEGX_64.c     [all...]
sljitLir.c     [all...]
sljitNativeARM_64.c     [all...]
sljitNativeARM_T2_32.c     [all...]
sljitNativeX86_common.c     [all...]
  /art/compiler/optimizing/
bounds_check_elimination.cc 244 int32_t new_constant; local
251 new_constant = constant_ + c;
253 if (IsConstant() || (IsRelatedToArrayLength() && new_constant <= 0)) {
254 return ValueBound(instruction_, new_constant);
265 new_constant = constant_ + c;
266 // Regardless of the value new_constant, (array.length+new_constant) will
269 return ValueBound(instruction_, new_constant);
    [all...]

Completed in 499 milliseconds