Searched refs:immediate (Results 51 - 75 of 162) sorted by relevance

1234567

/external/chromium_org/v8/src/arm64/
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...]
H A Dregexp-macro-assembler-arm64.h207 int immediate,
/external/chromium_org/v8/src/mips/
H A Dassembler-mips-inl.h56 Operand::Operand(int32_t immediate, RelocInfo::Mode rmode) { argument
58 imm32_ = immediate;
/external/chromium_org/v8/src/mips64/
H A Dassembler-mips64-inl.h56 Operand::Operand(int64_t immediate, RelocInfo::Mode rmode) { argument
58 imm64_ = immediate;
/external/llvm/test/MC/ARM/
H A Dthumb-diagnostics.s138 @ Out of range immediate for SVC instruction.
149 @ Out of range immediate for ADD SP instructions
H A Dbasic-thumb2-instructions.s19 @ ADC (immediate)
66 @ ADD (immediate)
152 @ AND (immediate)
184 @ ASR (immediate)
782 @ LDR(immediate)
888 @ LDRB(immediate)
995 @ LDRH(immediate)
1066 @ LDRSB(immediate)
1137 @ LDRSH(immediate)
1225 @ LSL (immediate)
[all...]
/external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
H A Devent_router.h185 // Sends onFileTransferUpdate event right now if |immediate| is set. Otherwise
193 bool immediate);
H A Devent_router.cc636 job_info, kFileTransferStateAdded, false /* immediate */);
652 ScheduleDriveFileTransferEvent(job_info, status, false /* immediate */);
665 ScheduleDriveFileTransferEvent(job_info, status, true /* immediate */);
673 bool immediate) {
678 if (immediate) {
671 ScheduleDriveFileTransferEvent(const drive::JobInfo& job_info, const std::string& status, bool immediate) argument
/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/kernel-headers/original/uapi/linux/
H A Dfirewire-cdev.h610 * @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
/external/libpcap/
H A Ddlpisubs.c294 if (p->opt.immediate) {
295 /* Set the timeout to zero, for immediate delivery. */
H A Dpcap-int.h93 int immediate; /* immediate mode - deliver packets as soon as they arrive */ member in struct:pcap_opt
H A Dpcap-nit.c238 if (p->opt.immediate) {
H A Dpcap-snit.c246 if (p->opt.immediate) {
H A Dpcap.c558 p->opt.immediate = 0;
650 pcap_set_immediate_mode(pcap_t *p, int immediate) argument
654 p->opt.immediate = immediate;
H A Dpcap-pf.c341 if (!p->opt.immediate)
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_context.h148 unsigned immediate[I915_MAX_IMMEDIATE]; member in struct:i915_state
/external/chromium_org/content/browser/appcache/
H A Dappcache_response_unittest.cc144 bool immediate = task_stack_.top().second; local
146 if (immediate)
H A Dappcache_url_request_job_unittest.cc286 bool immediate = task_stack_.top().second; local
288 if (immediate)
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_factory_unittest.cc57 bool immediate) {
58 ReleaseBackingStore(backing_store->origin_url(), immediate);
56 TestReleaseBackingStore(IndexedDBBackingStore* backing_store, bool immediate) argument
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_bar_view.h150 // If a button is currently throbbing, it is stopped. If immediate is true
153 void StopThrobbing(bool immediate);
/external/chromium_org/ui/app_list/views/
H A Dapps_grid_view.h390 // changing the size of it. If |immediate| is set the change will be
393 void SetViewHidden(views::View* view, bool hide, bool immediate);
/external/llvm/test/MC/AArch64/
H A Darm64-branch-encoding.s151 ; The immediate defaults to zero for DCPSn
/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...]
/external/vixl/src/a64/
H A Dassembler-a64.h471 // #<immediate>
472 // where <immediate> is int64_t.
475 Operand(int64_t immediate); // NOLINT(runtime/explicit)
500 int64_t immediate() const {
1170 // instruction will calculate an appropriate 16-bit immediate and left shift
1171 // that is equal to the 64-bit immediate argument. If an explicit left shift
1172 // is specified (0, 16, 32 or 48), the immediate must be a 16-bit value.
1179 // Move immediate and keep.
1184 // Move inverted immediate.
1189 // Move immediate
[all...]

Completed in 608 milliseconds

1234567