/external/chromium_org/third_party/sqlite/src/test/ |
tkt-f777251dc7a.test | 37 BEGIN IMMEDIATE; 59 BEGIN IMMEDIATE;
|
/external/llvm/include/llvm/MC/ |
MCInstBuilder.h | 37 /// \brief Add a new integer immediate operand. 43 /// \brief Add a new floating point immediate operand.
|
/external/llvm/lib/Target/ARM/ |
ARMRelocations.h | 56 // reloc_arm_movt - MOVT immediate relocation. 59 // reloc_arm_movw - MOVW immediate relocation.
|
/system/core/libpixelflinger/codeflinger/ |
ARMAssemblerInterface.cpp | 46 "LDR(B)/STR(B)/PLD immediate too big (%08x)", 57 "LDRH/LDRSB/LDRSH/STRH immediate too big (%08x)",
|
ARMAssembler.cpp | 458 uint32_t immediate, uint32_t& rot, uint32_t& imm) 461 imm = immediate; 480 if (((imm>>(rot<<1)) | (imm<<(32-(rot<<1)))) != immediate) 488 bool ARMAssembler::isValidImmediate(uint32_t immediate) 491 return buildImmediate(immediate, rot, imm) == 0; 494 uint32_t ARMAssembler::imm(uint32_t immediate) 497 int err = buildImmediate(immediate, rot, imm); 500 "immediate %08x cannot be encoded", 501 immediate); 504 "immediate (%08x) encoding bogus!" [all...] |
/external/chromium_org/v8/src/ia32/ |
builtins-ia32.cc | 72 __ add(eax, Immediate(num_extra_args + 1)); 170 __ cmp(Operand::StaticVariable(debug_step_in_fp), Immediate(0)); 258 __ or_(ebx, Immediate(kHeapObjectTag)); 312 __ add(eax, Immediate(kPointerSize)); 322 __ or_(edi, Immediate(kHeapObjectTag)); // add the heap tag 453 __ Set(esi, Immediate(0)); 475 __ Set(ecx, Immediate(0)); 494 __ mov(ebx, Immediate(undefined_sentinel)); 582 __ sub(Operand(esp, 0), Immediate(5)); 634 __ push(Immediate(Smi::FromInt(static_cast<int>(type)))) [all...] |
/external/v8/src/x64/ |
lithium-codegen-x64.cc | 170 __ subq(rsp, Immediate(slots * kPointerSize)); 785 __ andl(dividend, Immediate(divisor - 1)); 794 __ andl(dividend, Immediate(divisor - 1)); 831 __ subl(scratch, Immediate(1)); 914 __ cmpl(left_reg, Immediate(kMinInt)); 916 __ cmpl(right_reg, Immediate(-1)); 961 __ shll(left, Immediate(2)); 967 __ shll(left, Immediate(3)); 973 __ shll(left, Immediate(4)); 976 __ imull(left, left, Immediate(right_value)) [all...] |
/dalvik/vm/compiler/codegen/arm/ |
GlobalOptimizations.cpp | 22 * Identify unconditional branches that jump to the immediate successor of the
|
/external/chromium_org/ash/wm/ |
root_window_layout_manager.h | 31 // Resizes all of its immediate children to fill the bounds of the root window.
|
/external/chromium_org/chrome_frame/infobars/internal/ |
displaced_window_manager.h | 26 // Triggers an immediate re-evaluation of the dimensions of the displaced
|
host_window_manager.h | 28 // Triggers an immediate re-evaluation of the dimensions of the displaced
|
/external/chromium_org/v8/test/webkit/ |
constant-encoding.js | 24 description("Test that we correctly encode patterned immediate values");
|
/external/clang/test/Sema/ |
arm-neon-types.c | 16 // Check immediate range for vcvt_n intrinsics is 1 to 32. Radar 9558930.
|
/external/eigen/doc/ |
I01_TopicLazyEvaluation.dox | 29 Eigen chooses lazy evaluation. Thus the arrays are traversed only once, producing optimized code. If you really want to force immediate evaluation, use \link MatrixBase::eval() eval()\endlink: 39 <b>The first circumstance</b> in which Eigen chooses immediate evaluation, is when it sees an assignment <tt>a = b;</tt> and the expression \c b has the evaluate-before-assigning \link flags flag\endlink. The most important example of such an expression is the \link GeneralProduct matrix product expression\endlink. For example, when you do 51 <b>The second circumstance</b> in which Eigen chooses immediate evaluation, is when it sees a nested expression such as <tt>a + b</tt> where \c b is already an expression having the evaluate-before-nesting \link flags flag\endlink. Again, the most important example of such an expression is the \link GeneralProduct matrix product expression\endlink. For example, when you do 57 <b>The third circumstance</b> in which Eigen chooses immediate evaluation, is when its cost model shows that the total cost of an operation is reduced if a sub-expression gets evaluated into a temporary. Indeed, in certain cases, an intermediate result is sufficiently costly to compute and is reused sufficiently many times, that is worth "caching". Here is an example:
|
/external/llvm/lib/Target/Hexagon/ |
HexagonISelLowering.h | 168 /// isLegalICmpImmediate - Return true if the specified immediate is legal 169 /// icmp immediate, that is the target has icmp instructions which can 170 /// compare a register against the immediate without having to materialize 171 /// the immediate into a register.
|
/external/llvm/test/CodeGen/ARM/ |
inlineasm-imm-arm.ll | 3 ; Test ARM-mode "I" constraint, for any Data Processing immediate.
|
/external/llvm/test/MC/Mips/ |
mips_gprel16.ll | 3 ; addend is stored in the instruction immediate
|
sym-offset.ll | 12 ; check that the immediate fields of lwl and lwr are three apart.
|
/external/llvm/test/MC/PowerPC/ |
ppc64-operands.s | 24 # Signed 16-bit immediate operands 35 # Unsigned 16-bit immediate operands 43 # Signed 16-bit immediate operands (extended range for addis) 97 # Immediate branch operands
|
/external/mksh/ |
NOTICE | 21 * of said person?s immediate fault when using the work as intended.
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
SmsCbConstants.java | 63 /** CMAS Message Identifier for Extreme alerts, Urgency=Immediate, Certainty=Observed. */ 66 /** CMAS Message Identifier for Extreme alerts, Urgency=Immediate, Certainty=Likely. */ 75 /** CMAS Message Identifier for Severe alerts, Urgency=Immediate, Certainty=Observed. */ 78 /** CMAS Message Identifier for Severe alerts, Urgency=Immediate, Certainty=Likely. */
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
LauncherBackupAgentHelper.java | 30 * <P>This does not force an immediate backup.
|
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/ |
insn.h | 87 YASM_INSN__OPERAND_IMM /**< An immediate or jump target. */ 99 yasm_expr *val; /**< Value of immediate or jump target. */ 112 * "*" prefix to become a memory address (otherwise it's an immediate). 122 * "push dword 4", but not actually want to force the immediate size to 124 * though "dword" was not specified). To indicate the immediate should 184 /** Create an instruction operand from an immediate expression. 187 * \param val immediate expression
|
/external/chromium_org/v8/src/x64/ |
code-stubs-x64.cc | 373 __ cmpq(rdx, Immediate(SharedFunctionInfo::kSecondEntryIndex)); 375 __ subq(rdx, Immediate(SharedFunctionInfo::kEntryLength)); 503 __ cmpq(rcx, Immediate(0)); 637 __ andl(rcx, Immediate(HeapNumber::kExponentMask)); 638 __ shrl(rcx, Immediate(HeapNumber::kExponentShift)); 640 __ cmpl(result_reg, Immediate(HeapNumber::kMantissaBits)); 645 __ subl(rcx, Immediate(delta)); 647 __ cmpl(rcx, Immediate(31)); 661 __ cmpl(MemOperand(rsp, 0), Immediate(0)); 663 __ cmpl(exponent_operand, Immediate(0)) [all...] |
lithium-codegen-x64.cc | 181 __ subq(rsp, Immediate(slots * kPointerSize)); 196 __ subq(rsp, Immediate(slots * kPointerSize)); [all...] |