Searched defs:immediate (Results 26 - 50 of 54) sorted by relevance

123

/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.c138 } immediate[UREG_MAX_IMMEDIATE]; member in struct:ureg_program
693 /* Actually expand immediate only when fully succeeded.
714 if (ureg->immediate[i].type != type) {
719 ureg->immediate[i].value.u,
720 &ureg->immediate[i].nr,
728 ureg->immediate[i].type = type;
731 ureg->immediate[i].value.u,
732 &ureg->immediate[i].nr,
741 /* Make sure that all referenced elements are from this immediate.
801 ureg->immediate[
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_context.h148 unsigned immediate[I915_MAX_IMMEDIATE]; member in struct:i915_state
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Dr600_shader.c1085 /* need to move any immediate into a temp - for trig functions which use literal for PI stuff */
1168 struct tgsi_full_immediate *immediate; local
1300 immediate = &ctx.parse.FullToken.FullImmediate;
1306 ctx.literals[ctx.nliterals * 4 + 0] = immediate->u[0].Uint;
1307 ctx.literals[ctx.nliterals * 4 + 1] = immediate->u[1].Uint;
1308 ctx.literals[ctx.nliterals * 4 + 2] = immediate->u[2].Uint;
1309 ctx.literals[ctx.nliterals * 4 + 3] = immediate->u[3].Uint;
/external/chromium_org/v8/src/arm64/
H A Dregexp-macro-assembler-arm64.cc1471 int immediate,
1474 if ((immediate == 0) && ((condition == eq) || (condition == ne))) {
1484 __ Cmp(reg, immediate);
1640 // The immediate field in the encoding is limited to 7 bits (signed).
1470 CompareAndBranchOrBacktrack(Register reg, int immediate, Condition condition, Label* to) argument
H A Dassembler-arm64.cc1727 // Moves involving the stack pointer are encoded as add immediate with
1956 // Although the fcmp instruction can strictly only take an immediate value of
2108 // Ignore the top 32 bits of an immediate if we're moving to a W register.
2123 // Calculate a new immediate and shift combination to encode the immediate
2157 int64_t immediate = operand.ImmediateValue(); local
2158 DCHECK(IsImmAddSub(immediate));
2161 ImmAddSub(immediate) | dest_reg | RnSP(rn));
2264 int64_t immediate = operand.ImmediateValue(); local
2267 DCHECK(immediate !
2316 int64_t immediate = operand.ImmediateValue(); local
2449 IsImmAddSub(int64_t immediate) argument
2733 IsImmConditionalCompare(int64_t immediate) argument
[all...]
H A Dmacro-assembler-arm64.cc63 Ldr(temp, operand.immediate());
67 int64_t immediate = operand.ImmediateValue(); local
70 // If the operation is NOT, invert the operation and immediate.
73 immediate = ~immediate;
76 // Ignore the top 32 bits of an immediate if we're moving to a W register.
79 DCHECK(((immediate >> kWRegSizeInBits) == 0) ||
80 ((immediate >> kWRegSizeInBits) == -1));
81 immediate &= kWRegMask;
84 DCHECK(rd.Is64Bits() || is_uint32(immediate));
[all...]
/external/chromium_org/v8/src/mips/
H A Dassembler-mips.h366 INLINE(explicit Operand(int32_t immediate,
381 inline int32_t immediate() const { function in class:v8::internal::BASE_EMBEDDED
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64.h356 INLINE(explicit Operand(int64_t immediate,
371 inline int64_t immediate() const { function in class:v8::internal::BASE_EMBEDDED
/external/libpcap/
H A Dpcap.c558 p->opt.immediate = 0;
650 pcap_set_immediate_mode(pcap_t *p, int immediate) argument
654 p->opt.immediate = immediate;
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_ureg.c138 } immediate[UREG_MAX_IMMEDIATE]; member in struct:ureg_program
693 /* Actually expand immediate only when fully succeeded.
714 if (ureg->immediate[i].type != type) {
719 ureg->immediate[i].value.u,
720 &ureg->immediate[i].nr,
728 ureg->immediate[i].type = type;
731 ureg->immediate[i].value.u,
732 &ureg->immediate[i].nr,
741 /* Make sure that all referenced elements are from this immediate.
801 ureg->immediate[
[all...]
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_context.h148 unsigned immediate[I915_MAX_IMMEDIATE]; member in struct:i915_state
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c1085 /* need to move any immediate into a temp - for trig functions which use literal for PI stuff */
1168 struct tgsi_full_immediate *immediate; local
1300 immediate = &ctx.parse.FullToken.FullImmediate;
1306 ctx.literals[ctx.nliterals * 4 + 0] = immediate->u[0].Uint;
1307 ctx.literals[ctx.nliterals * 4 + 1] = immediate->u[1].Uint;
1308 ctx.literals[ctx.nliterals * 4 + 2] = immediate->u[2].Uint;
1309 ctx.literals[ctx.nliterals * 4 + 3] = immediate->u[3].Uint;
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_pcb.c3873 sctp_inpcb_free(struct sctp_inpcb *inp, int immediate, int from) argument
3911 SCTP_PRINTF("This conflict in free SHOULD not be happening! from %d, imm %d\n", from, immediate);
3944 if (immediate == SCTP_FREE_SHOULD_USE_GRACEFUL_CLOSE) {
/external/chromium_org/ui/app_list/views/
H A Dapps_grid_view.cc2070 void AppsGridView::SetViewHidden(views::View* view, bool hide, bool immediate) { argument
2073 immediate ? ui::LayerAnimator::IMMEDIATELY_SET_NEW_TARGET :
/external/vixl/src/a64/
H A Dassembler-a64.cc206 Operand::Operand(int64_t immediate)
207 : immediate_(immediate),
256 return immediate() == 0;
309 offset_ = offset.immediate();
1169 // Moves involving the stack pointer are encoded as add immediate with
1398 // Although the fcmp instruction can strictly only take an immediate value of
1557 // Calculate a new immediate and shift combination to encode the immediate
1590 int64_t immediate = operand.immediate(); local
1650 int64_t immediate = operand.immediate(); local
1701 int64_t immediate = operand.immediate(); local
1833 IsImmAddSub(int64_t immediate) argument
2013 IsImmConditionalCompare(int64_t immediate) argument
[all...]
/external/chromium_org/v8/src/arm/
H A Dassembler-arm.cc1000 // immediate fits, change the opcode.
1043 // if they can be encoded in the ARM's 12 bits of immediate-offset instruction
1069 // Otherwise, use immediate load if movw / movt is available.
1081 // The immediate operand cannot be encoded as a shifter operand, or use of
1083 // for the constant pool or immediate load
1086 // A movw / movt or mov / orr immediate load.
1098 // code, the constant pool or immediate load is enough, otherwise we need
1104 // No use of constant pool and the immediate operand can be encoded as a
1177 // The immediate operand cannot be encoded as a shifter operand, so load
1515 void Assembler::movw(Register reg, uint32_t immediate, Conditio argument
1521 movt(Register reg, uint32_t immediate, Condition cond) argument
3156 EncodeMovwImmediate(uint32_t immediate) argument
[all...]
H A Dassembler-arm.h206 // hold 0.0, that does not fit in the immediate field of vmov instructions.
488 // immediate
489 INLINE(explicit Operand(int32_t immediate,
535 inline int32_t immediate() const { function in class:v8::internal::BASE_EMBEDDED
917 // ARMv7 instructions for loading a 32 bit immediate in two instructions.
919 void movw(Register reg, uint32_t immediate, Condition cond = al);
920 void movt(Register reg, uint32_t immediate, Condition cond = al);
935 mov(dst, Operand(src1, ASR, src2.immediate()), s, cond);
944 mov(dst, Operand(src1, LSL, src2.immediate()), s, cond);
953 mov(dst, Operand(src1, LSR, src2.immediate()),
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_mips_toIR.c713 /* Get immediate field for DSP ASE instructions. */
2825 UShort immediate = extend_s_10to16(dsp_imm); local
2827 putIReg(rd, mkU32(immediate << 16 | immediate));
H A Dguest_arm64_toIR.c1767 /*--- Data processing (immediate) ---*/
1827 ULong immN, ULong imms, ULong immr, Bool immediate,
1833 vassert(immediate == False || immediate == True);
1846 if (immediate && ((imms & levels) == levels)) {
1894 10001x Add/subtract (immediate)
1895 100100 Logical (immediate)
1896 100101 Move Wide (immediate)
2244 immediate. Returns either a 32- or 64-bit temporary holding the
2682 immediate
1826 dbm_DecodeBitMasks( ULong* wmask, ULong* tmask, ULong immN, ULong imms, ULong immr, Bool immediate, UInt M ) argument
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContents.java1315 public boolean requestChildRectangleOnScreen(View child, Rect rect, boolean immediate) { argument
1318 rect, immediate);
/external/chromium_org/v8/src/ia32/
H A Dlithium-codegen-ia32.cc1930 Immediate immediate = ToImmediate(LConstantOperand::cast(instr->right()), local
1932 __ cmp(left_op, immediate);
1934 __ mov(left_op, immediate);
4060 Immediate immediate = ToImmediate(operand_value, representation); local
4062 __ mov(operand, immediate);
4230 Immediate immediate = ToImmediate(operand_value, Representation::Smi()); local
4231 __ mov(operand, immediate);
4374 Immediate immediate = ToImmediate(LConstantOperand::cast(instr->index()), local
4376 __ push(immediate);
/external/chromium_org/v8/src/x87/
H A Dlithium-codegen-x87.cc2198 Immediate immediate = ToImmediate(LConstantOperand::cast(instr->right()), local
2200 __ cmp(left_op, immediate);
2202 __ mov(left_op, immediate);
4481 Immediate immediate = ToImmediate(operand_value, representation); local
4483 __ mov(operand, immediate);
4676 Immediate immediate = ToImmediate(operand_value, Representation::Smi()); local
4677 __ mov(operand, immediate);
4816 Immediate immediate = ToImmediate(LConstantOperand::cast(instr->index()), local
4818 __ push(immediate);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 5163 milliseconds

123