HomeSort by relevance Sort by last modified time
    Searched defs:immediate (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/v8/src/
code.h 17 // either registers or immediate values. Used to make sure that the
24 explicit ParameterCount(int immediate)
25 : reg_(no_reg), immediate_(immediate) { }
36 int immediate() const { function in class:v8::internal::BASE_EMBEDDED
  /external/ltrace/sysdeps/linux-gnu/ppc/
insn.h 37 int immediate = ((insn & 0xfffc) ^ 0x8000) - 0x8000; local
42 return (arch_addr_t)(uintptr_t)immediate;
44 return addr + (uintptr_t)immediate;
  /external/chromium_org/third_party/skia/src/animator/
SkAnimateActive.cpp 191 bool SkActive::immediate(bool enable) { function in class:SkActive
  /external/chromium_org/v8/src/arm/
assembler-arm-inl.h 369 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) {
371 imm32_ = immediate;
501 // A movw / movt load immediate.
513 // A mov / orr load immediate.
591 // This is an movw / movt immediate load. Return the immediate.
600 // This is an mov / orr immediate load. Return the immediate.
633 // This is an movw / movt immediate load. Patch the immediate embedded i
638 uint32_t immediate = reinterpret_cast<uint32_t>(target); local
654 uint32_t immediate = reinterpret_cast<uint32_t>(target); local
    [all...]
assembler-arm.h 206 // 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()), s, cond)
    [all...]
  /external/chromium_org/v8/src/compiler/x64/
code-generator-x64.cc 56 Immediate InputImmediate(int index) {
70 Immediate64 immediate; local
71 immediate.value = 0xbeefdeaddeefbeed;
72 immediate.type = kImm64Value;
76 immediate.value = constant.ToInt64();
77 return immediate;
79 immediate.type = kImm64Handle;
80 immediate.handle =
82 return immediate;
84 immediate.type = kImm64Reference
    [all...]
  /external/chromium_org/content/browser/appcache/
appcache_response_unittest.cc 144 bool immediate = task_stack_.top().second; local
146 if (immediate)
appcache_url_request_job_unittest.cc 286 bool immediate = task_stack_.top().second; local
288 if (immediate)
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_build.c 485 * immediate
491 struct tgsi_immediate immediate; local
493 immediate.Type = TGSI_TOKEN_TYPE_IMMEDIATE;
494 immediate.NrTokens = 1;
495 immediate.DataType = TGSI_IMM_FLOAT32;
496 immediate.Padding = 0;
498 return immediate;
506 struct tgsi_immediate immediate; local
508 immediate = tgsi_default_immediate();
509 immediate.DataType = type
550 struct tgsi_immediate *immediate; local
    [all...]
tgsi_ureg.c 138 } 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[i].type = TGSI_IMM_UINT32
    [all...]
  /external/libpcap/
pcap-int.h 93 int immediate; /* immediate mode - deliver packets as soon as they arrive */ member in struct:pcap_opt
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 485 * immediate
491 struct tgsi_immediate immediate; local
493 immediate.Type = TGSI_TOKEN_TYPE_IMMEDIATE;
494 immediate.NrTokens = 1;
495 immediate.DataType = TGSI_IMM_FLOAT32;
496 immediate.Padding = 0;
498 return immediate;
506 struct tgsi_immediate immediate; local
508 immediate = tgsi_default_immediate();
509 immediate.DataType = type
550 struct tgsi_immediate *immediate; local
    [all...]
tgsi_ureg.c 138 } 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[i].type = TGSI_IMM_UINT32
    [all...]
  /bionic/libc/kernel/uapi/linux/
firewire-cdev.h 216 __u32 immediate; member in struct:fw_cdev_add_descriptor
  /development/ndk/platforms/android-L/include/linux/
firewire-cdev.h 216 __u32 immediate; member in struct:fw_cdev_add_descriptor
  /external/kernel-headers/original/uapi/linux/
firewire-cdev.h 610 * @immediate: If non-zero, immediate key to insert before pointer
616 * Add a descriptor block and optionally a preceding immediate key to the local
624 * If not 0, the @immediate field specifies an immediate key which will be
627 * @immediate, @key, and @data array elements are CPU-endian quadlets.
631 * and immediate key. The kernel will also generate a bus reset to signal the
638 __u32 immediate; member in struct:fw_cdev_add_descriptor
650 * Remove a descriptor block and accompanying immediate key from the local
    [all...]
  /art/compiler/utils/arm/
assembler_thumb2.cc 633 // Check special case for SP relative ADD and SUB immediate.
643 if (imm > (1 << 9)) { // 9 bit immediate.
646 } else if (opcode == ADD && rd != SP && rn == SP) { // 10 bit immediate.
658 // immediate variants.
703 // The only thumb1 instruction with a register and an immediate are ADD and SUB. The
704 // immediate must be 3 bits.
708 // Check that the immediate is 3 bits for ADD and SUB.
714 // ADD, SUB, CMP and MOV may be thumb1 only if the immediate is 8 bits.
785 // Modified immediate.
788 LOG(FATAL) << "Immediate value cannot fit in thumb2 modified immediate"
828 uint8_t immediate = 0; local
951 uint8_t immediate = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
i915_context.h 148 unsigned immediate[I915_MAX_IMMEDIATE]; member in struct:i915_state
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_shader.c 1085 /* need to move any immediate into a temp - for trig functions which use literal for PI stuff */
1168 struct tgsi_full_immediate *immediate; local
    [all...]
  /external/chromium_org/v8/src/mips/
assembler-mips.h 365 // Immediate.
366 INLINE(explicit Operand(int32_t immediate,
381 inline int32_t immediate() const { function in class:v8::internal::BASE_EMBEDDED
402 // Immediate value attached to offset.
    [all...]
  /external/chromium_org/v8/src/mips64/
assembler-mips64.h 355 // Immediate.
356 INLINE(explicit Operand(int64_t immediate,
371 inline int64_t immediate() const { function in class:v8::internal::BASE_EMBEDDED
392 // Immediate value attached to offset.
    [all...]
  /external/mesa3d/src/gallium/drivers/i915/
i915_context.h 148 unsigned immediate[I915_MAX_IMMEDIATE]; member in struct:i915_state
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 1085 /* need to move any immediate into a temp - for trig functions which use literal for PI stuff */
1168 struct tgsi_full_immediate *immediate; local
    [all...]
  /external/chromium_org/v8/src/arm64/
assembler-arm64.cc 273 void Immediate::InitializeHandle(Handle<Object> handle) {
2157 int64_t immediate = operand.ImmediateValue(); local
2264 int64_t immediate = operand.ImmediateValue(); local
2316 int64_t immediate = operand.ImmediateValue(); local
    [all...]
macro-assembler-arm64.cc 63 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...]

Completed in 658 milliseconds

1 2