Searched refs:operand (Results 26 - 50 of 253) sorted by relevance

1234567891011

/external/chromium_org/sdch/open-vcdiff/src/
H A Drolling_hash.h42 // Returns operand % kBase, assuming that kBase is a power of two.
43 static inline uint32_t ModBase(uint32_t operand) { argument
44 return operand & (kBase - 1);
47 // Given an unsigned integer "operand", returns an unsigned integer "result"
51 // ModBase(operand + result) == 0
52 static inline uint32_t FindModBaseInverse(uint32_t operand) { argument
53 // The subtraction (0 - operand) produces an unsigned underflow for any
54 // operand except 0. The underflow results in a (very large) unsigned
59 // The C++ mod operation (operand % kBase) may produce different results for
60 // different compilers if operand i
[all...]
H A Drolling_hash_test.cc33 void TestModBase(uint32_t operand) { argument
34 EXPECT_EQ(operand % kBase, RollingHashUtil::ModBase(operand));
35 EXPECT_EQ(static_cast<uint32_t>((-static_cast<int32_t>(operand)) % kBase),
36 RollingHashUtil::FindModBaseInverse(operand));
38 operand + RollingHashUtil::FindModBaseInverse(operand)));
/external/chromium_org/third_party/skia/src/animator/
H A DSkOpArray.h20 bool getIndex(int index, SkOperand2* operand);
H A DSkAnimatorScript2.cpp57 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) { argument
61 SkDisplayArray* boxedValue = new SkDisplayArray(*operand->fArray);
67 boxedValue->value = operand->fS32;
72 boxedValue->value = operand->fScalar;
75 SkDisplayString* boxedValue = new SkDisplayString(*operand->fString);
85 operand->fObject = (void*) displayable;
306 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) { argument
308 SkDisplayable* displayable = (SkDisplayable*) operand->fObject;
312 operand->fArray = new SkOpArray(SkAnimatorScript2::ToOpType(boxedValue->values.getType()));
314 operand
344 getReturnType(int , SkOperand2* operand) argument
[all...]
/external/open-vcdiff/src/
H A Drolling_hash.h42 // Returns operand % kBase, assuming that kBase is a power of two.
43 static inline uint32_t ModBase(uint32_t operand) { argument
44 return operand & (kBase - 1);
47 // Given an unsigned integer "operand", returns an unsigned integer "result"
51 // ModBase(operand + result) == 0
52 static inline uint32_t FindModBaseInverse(uint32_t operand) { argument
53 // The subtraction (0 - operand) produces an unsigned underflow for any
54 // operand except 0. The underflow results in a (very large) unsigned
59 // The C++ mod operation (operand % kBase) may produce different results for
60 // different compilers if operand i
[all...]
H A Drolling_hash_test.cc33 void TestModBase(uint32_t operand) { argument
34 EXPECT_EQ(operand % kBase, RollingHashUtil::ModBase(operand));
35 EXPECT_EQ(static_cast<uint32_t>((-static_cast<int32_t>(operand)) % kBase),
36 RollingHashUtil::FindModBaseInverse(operand));
38 operand + RollingHashUtil::FindModBaseInverse(operand)));
/external/skia/src/animator/
H A DSkOpArray.h20 bool getIndex(int index, SkOperand2* operand);
H A DSkAnimatorScript2.cpp57 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) { argument
61 SkDisplayArray* boxedValue = new SkDisplayArray(*operand->fArray);
67 boxedValue->value = operand->fS32;
72 boxedValue->value = operand->fScalar;
75 SkDisplayString* boxedValue = new SkDisplayString(*operand->fString);
85 operand->fObject = (void*) displayable;
306 virtual bool convert(SkOperand2::OpType type, SkOperand2* operand) { argument
308 SkDisplayable* displayable = (SkDisplayable*) operand->fObject;
312 operand->fArray = new SkOpArray(SkAnimatorScript2::ToOpType(boxedValue->values.getType()));
314 operand
344 getReturnType(int , SkOperand2* operand) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
H A Dnv04_state_frag.c53 GLenum *operand; member in struct:combiner_state
74 (rc)->operand = c->Operand##chan; \
114 * specified EXT_texture_env_combine operand. */
118 get_input_mapping(struct combiner_state *rc, int operand, int flags) argument
122 if (!is_color_operand(operand) && !rc->alpha)
125 if (is_negative_operand(operand) == !(flags & INVERT))
135 int operand = rc->operand[arg]; local
146 if (is_color_operand(operand))
148 get_input_mapping(rc, operand, flag
[all...]
H A Dnv10_state_frag.c71 GLenum *operand; member in struct:combiner_state
89 (rc)->operand = c->Operand##chan; \
136 * operand, possibly inverted or biased. */
141 get_input_mapping(struct combiner_state *rc, int operand, int flags) argument
145 if (is_color_operand(operand))
150 if (is_negative_operand(operand) == !(flags & INVERT))
166 int operand = rc->operand[arg]; local
177 if (is_color_operand(operand))
179 get_input_mapping(rc, operand, flag
[all...]
/external/llvm/test/MC/ARM/
H A Dthumb2-diagnostics.s39 @ CHECK-ERRORS: error: invalid operand for instruction
40 @ CHECK-ERRORS: error: invalid operand for instruction
41 @ CHECK-ERRORS: error: invalid operand for instruction
42 @ CHECK-ERRORS: error: invalid operand for instruction
43 @ CHECK-ERRORS: error: immediate operand must be in the range [0,15]
44 @ CHECK-ERRORS: error: immediate operand must be in the range [0,15]
H A Ddiagnostics.s94 @ CHECK-ERRORS: error: invalid operand for instruction
104 @ CHECK-ERRORS: error: invalid operand for instruction
105 @ CHECK-ERRORS: error: invalid operand for instruction
106 @ CHECK-ERRORS: error: invalid operand for instruction
107 @ CHECK-ERRORS: error: invalid operand for instruction
113 @ CHECK-ERRORS: error: immediate operand must be in the range [0,15]
114 @ CHECK-ERRORS: error: immediate operand must be in the range [0,15]
125 @ CHECK-ERRORS: error: invalid operand for instruction
126 @ CHECK-ERRORS: error: invalid operand for instruction
127 @ CHECK-ERRORS: error: invalid operand fo
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv04_state_frag.c53 GLenum *operand; member in struct:combiner_state
74 (rc)->operand = c->Operand##chan; \
114 * specified EXT_texture_env_combine operand. */
118 get_input_mapping(struct combiner_state *rc, int operand, int flags) argument
122 if (!is_color_operand(operand) && !rc->alpha)
125 if (is_negative_operand(operand) == !(flags & INVERT))
135 int operand = rc->operand[arg]; local
146 if (is_color_operand(operand))
148 get_input_mapping(rc, operand, flag
[all...]
H A Dnv10_state_frag.c71 GLenum *operand; member in struct:combiner_state
89 (rc)->operand = c->Operand##chan; \
136 * operand, possibly inverted or biased. */
141 get_input_mapping(struct combiner_state *rc, int operand, int flags) argument
145 if (is_color_operand(operand))
150 if (is_negative_operand(operand) == !(flags & INVERT))
166 int operand = rc->operand[arg]; local
177 if (is_color_operand(operand))
179 get_input_mapping(rc, operand, flag
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/tests/
H A Dutilities.js50 values.operand || ''
64 operand: last && last[2] || null
201 * [accumulator operator operand]
204 * where |accumulator|, |operand|, |prefix|, and |suffix| are numbers or
206 * underscore. The |operand|, |prefix|, and |suffix| numbers may contain
228 * - If the element being tested is a number, the expected operand value
321 var operand = last && last.slice(2).join(''); variable
325 if (operation && !operand)
328 expected.splice(-1, 1, [operand, last[1], operand], ['', elemen
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
H A Djmpfar.asm2 jmp near 1234:5678 ; YASM: near jump; NASM: mismatch in operand sizes
3 jmp far 1234:5678 ; YASM: far jump; NASM: mismatch in operand sizes
/external/hamcrest/src/org/hamcrest/core/
H A DIsEqual.java67 public static <T> Matcher<T> equalTo(T operand) { argument
68 return new IsEqual<T>(operand);
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_rvalue_visitor.cpp41 unsigned int operand; local
43 for (operand = 0; operand < ir->get_num_operands(); operand++) {
44 handle_rvalue(&ir->operands[operand]);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dfloatnum.c309 wordptr operand[2]; local
319 operand[0] = BitVector_Create(MANT_BITS, TRUE);
320 operand[1] = BitVector_Create(MANT_BITS, TRUE);
360 BitVector_Copy(operand[0], flt->mantissa);
363 BitVector_add(operand[1], operand[0], flt->mantissa, &carry);
366 BitVector_Empty(operand[0]);
367 BitVector_Chunk_Store(operand[0], 4, 0, (N_long)(*str-'0'));
369 BitVector_add(flt->mantissa, operand[1], operand[
514 yasm_floatnum_calc(yasm_floatnum *acc, yasm_expr_op op, yasm_floatnum *operand) argument
[all...]
H A Dfloatnum.h68 /** Floating point calculation function: acc = acc op operand.
73 * \param operand floatnum operand
78 yasm_floatnum *operand);
/external/mesa3d/src/glsl/
H A Dir_rvalue_visitor.cpp41 unsigned int operand; local
43 for (operand = 0; operand < ir->get_num_operands(); operand++) {
44 handle_rvalue(&ir->operands[operand]);
/external/chromium/sdch/open-vcdiff/src/
H A Drolling_hash_test.cc33 void TestModBase(uint32_t operand) { argument
34 EXPECT_EQ(operand % kBase, RollingHashUtil::ModBase(operand));
35 EXPECT_EQ(static_cast<uint32_t>((-static_cast<int32_t>(operand)) % kBase),
36 RollingHashUtil::FindModBaseInverse(operand));
38 operand + RollingHashUtil::FindModBaseInverse(operand)));
/external/llvm/lib/Target/Sparc/
H A DSparcAsmPrinter.cpp83 "Invalid target flags for address operand on sethi");
87 "Invalid target flags for small address operand");
94 llvm_unreachable("Unknown target flags on operand");
132 llvm_unreachable("<unknown operand type>");
141 // If this is an ADD operand, emit it like normal operands.
161 std::string operand = ""; local
170 operand = "%" + StringRef(getRegisterName(MO.getReg())).lower();
182 << ")), " << operand << '\n' ; local
185 O << "\tor\t" << operand
187 << ")), " << operand << '\ local
188 O << "\\tadd\\t" << operand << ", %o7, " << operand << '\\n'; local
[all...]
/external/libpcap/
H A Dbpf_image.c48 char operand[64]; local
280 (void)snprintf(operand, sizeof operand, fmt, v);
286 n, op, operand, n + 1 + p->jt, n + 1 + p->jf);
/external/chromium_org/v8/src/
H A Dhydrogen-escape-analysis.cc92 HValue* operand = old_state->OperandAt(index); local
93 HPhi* phi = NewPhiAndInsert(block, operand, index);
105 HValue* operand = old_state->OperandAt(index); local
106 state->SetOperandAt(index, operand);
189 // operand stack yet. Find a repro test case and fix this.
253 HValue* operand = state->OperandAt(index); local
256 // Phi already exists, add operand.
258 phi->SetOperandAt(succ->PredecessorIndexOf(block), operand);
259 } else if (succ_operand != operand) {
262 phi->SetOperandAt(succ->PredecessorIndexOf(block), operand);
[all...]

Completed in 2568 milliseconds

1234567891011