Searched refs:assigned (Results 1 - 25 of 47) sorted by relevance

12

/external/v8/test/unittests/wasm/
H A Dloop-assignment-analysis-unittest.cc37 BitVector* assigned = Analyze(code, code); local
38 CHECK_NULL(assigned);
44 BitVector* assigned = Analyze(code, code + arraysize(code)); local
45 for (int j = 0; j < assigned->length(); j++) {
46 CHECK_EQ(false, assigned->Contains(j));
56 BitVector* assigned = Analyze(code, code + arraysize(code)); local
57 for (int j = 0; j < assigned->length(); j++) {
58 CHECK_EQ(j == i, assigned->Contains(j));
67 BitVector* assigned = Analyze(code, code + arraysize(code)); local
68 for (int j = 0; j < assigned
79 BitVector* assigned = Analyze(code, code + arraysize(code)); local
93 BitVector* assigned = Analyze(code, code + arraysize(code)); local
120 BitVector* assigned = Analyze(code, code + arraysize(code)); local
134 BitVector* assigned = Analyze(code, code + arraysize(code)); local
150 BitVector* assigned = Analyze(code, code + arraysize(code)); local
176 BitVector* assigned = Analyze(code + 1, code + arraysize(code)); local
187 BitVector* assigned = Analyze(code, code + arraysize(code)); local
[all...]
/external/mesa3d/src/glsl/
H A Dlower_vector.cpp143 unsigned assigned; local
145 /* Write-mask in the destination that receives counted by 'assigned'.
153 * - All constant components can be assigned at once.
155 * unary operator can be assigned at once.
159 assigned = 0;
168 case GLSL_TYPE_UINT: d.u[assigned] = c->value.u[0]; break;
169 case GLSL_TYPE_INT: d.i[assigned] = c->value.i[0]; break;
170 case GLSL_TYPE_FLOAT: d.f[assigned] = c->value.f[0]; break;
171 case GLSL_TYPE_BOOL: d.b[assigned] = c->value.b[0]; break;
176 assigned
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dquantityformattertest.cpp96 QuantityFormatter assigned; local
97 assigned = fmt;
99 "assigned getByVariant",
100 assigned.getByVariant("other")->getTextWithNoPlaceholders(),
103 "assigned getByVariant",
104 assigned.getByVariant("one")->getTextWithNoPlaceholders(),
107 "assigned getByVariant",
108 assigned.getByVariant("few")->getTextWithNoPlaceholders(),
/external/google-breakpad/src/processor/
H A Dpostfix_evaluator.h56 // treated as constants. Any results must be assigned into variables in the
58 // Evaluate, unless used in an expression prior to being assigned to. The
104 // variables in the dictionary in an indeterminate state. If assigned is
106 // will also be set to true in assigned, providing a way to determine if
108 bool Evaluate(const string &expression, DictionaryValidityType *assigned);
151 // Evaluate expression, updating *assigned if it is non-zero. Return
155 DictionaryValidityType *assigned);
159 DictionaryValidityType *assigned);
H A Dpostfix_evaluator-inl.h73 DictionaryValidityType *assigned) {
192 if (assigned)
193 (*assigned)[identifier] = true;
207 DictionaryValidityType *assigned) {
218 if (!EvaluateToken("=", expression, assigned)) {
222 if (!EvaluateToken(token.substr(1), expression, assigned)) {
225 } else if (!EvaluateToken(token, expression, assigned)) {
235 DictionaryValidityType *assigned) {
239 if (!EvaluateInternal(expression, assigned))
70 EvaluateToken( const string &token, const string &expression, DictionaryValidityType *assigned) argument
205 EvaluateInternal( const string &expression, DictionaryValidityType *assigned) argument
234 Evaluate(const string &expression, DictionaryValidityType *assigned) argument
H A Dpostfix_evaluator_unittest.cc240 PostfixEvaluator<unsigned int>::DictionaryValidityType assigned; local
249 &assigned);
294 // The value must be set in the "assigned" dictionary if it was a
295 // variable. It must not have been assigned if it was a constant.
299 iterator_assigned = assigned.find(identifier);
300 if (iterator_assigned != assigned.end()) {
/external/junit/src/org/junit/experimental/theories/internal/
H A DAssignments.java28 private Assignments(List<PotentialAssignment> assigned, argument
31 fAssigned= assigned;
37 * assigned.
58 List<PotentialAssignment> assigned= new ArrayList<PotentialAssignment>(
60 assigned.add(source);
62 return new Assignments(assigned, fUnassigned.subList(1, fUnassigned
/external/libvorbis/vq/
H A Dvqgen.h39 long *assigned; member in struct:vqgen
H A Dvqgen.c111 if(v->assigned[k] && (localmin==-1 || this<localmin))
123 if(v->assigned[j]==0){
254 v->assigned=_ogg_malloc(v->entries*sizeof(long));
379 memset(v->assigned,0,sizeof(long)*v->entries);
504 if(v->assigned[j]++){
515 if(v->assigned[j]++){
535 fprintf(assig,"%ld\n",v->assigned[j]);
538 asserror+=fabs(v->assigned[j]-fdesired);
539 if(v->assigned[j]){
542 _now(v,j)[k]=vN(new,j)[k]/v->assigned[
[all...]
/external/v8/src/compiler/
H A Dcontrol-builders.cc35 void LoopBuilder::BeginLoop(BitVector* assigned, bool is_osr) { argument
36 loop_environment_ = environment()->CopyForLoop(assigned, is_osr);
H A Dcontrol-builders.h69 void BeginLoop(BitVector* assigned, bool is_osr = false);
H A Dast-graph-builder.h573 Environment* CopyForLoop(BitVector* assigned, bool is_osr = false);
604 void PrepareForLoop(BitVector* assigned, bool is_osr = false);
H A Dregister-allocator.cc161 // location has been assigned at definition. For ranges spilled in deferred
1353 const InstructionOperand& assigned) {
1355 InstructionOperand::ReplaceWith(operand, &assigned);
1655 bool assigned = false; local
1664 assigned = true;
1678 if (!assigned) {
1711 bool assigned = false; local
1729 assigned = true;
1736 if (!assigned) {
2296 // operand assigned
1352 CommitAssignment( const InstructionOperand& assigned) argument
3330 InstructionOperand assigned = range->GetAssignedOperand(); local
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ssa.cpp218 // liveIn(bb) = usedBeforeAssigned(bb) U (liveOut(bb) - assigned(bb))
224 BitSet assigned(allLValues.getSize(), true);
246 if (i->getSrc(s)->asLValue() && !assigned.test(i->getSrc(s)->id))
249 assigned.set(i->getDef(d)->id);
255 if (!assigned.test(it->get()->id))
260 bb->liveSet.andNot(assigned);
/external/libchrome/base/
H A Dcommand_line_unittest.cc398 CommandLine assigned = *initial; local
404 EXPECT_TRUE(assigned.HasSwitch(pair.first));
/external/v8/src/wasm/
H A Dast-decoder.cc1376 BitVector* assigned = AnalyzeLoopAssignment(pc); local
1377 if (assigned != nullptr) {
1378 // Only introduce phis for variables assigned in this loop.
1380 if (!assigned->Contains(i)) continue;
1454 BitVector* assigned =
1470 if (assigned->length() > 0 &&
1471 static_cast<int>(operand.index) < assigned->length()) {
1473 assigned->Add(operand.index);
1488 return ok() ? assigned : nullptr;
/external/clang/test/SemaCXX/
H A Dconstant-expression-cxx1y.cpp578 bool assigned = false; member in struct:loops::assignment_op::B
580 assigned = true;
593 return d.n == 7 && d.assigned && d.b.assigned;
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/
H A Dsix.py761 def wraps(wrapped, assigned=functools.WRAPPER_ASSIGNMENTS,
764 f = functools.wraps(wrapped, assigned, updated)(f)
/external/chromium-trace/catapult/third_party/six/
H A Dsix.py789 def wraps(wrapped, assigned=functools.WRAPPER_ASSIGNMENTS,
792 f = functools.wraps(wrapped, assigned, updated)(f)
/external/mesa3d/docs/
H A DMESA_drm_image.spec23 EGL Extension #not assigned
113 If <name> is non-NULL, a global name is assigned to the image and
/external/mesa3d/docs/OLD/
H A DMESA_packed_depth_stencil.spec229 Brian's edits, assigned values to new enums.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dtoken.rb45 Furthermore, ANTLR tokens are assigned a "channel" number, an extra degree of
84 # the integer value of the channel to which the token is assigned
479 and assigned it to the constant name +Token+. This token class will both include
488 and a grammar-specific subclass of ANTLR3::CommonToken assigned to the constant
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
H A Dmessages.py117 """Duplicate number assigned to field."""
710 a field that it is assigned to can be done through the Field instances
778 assigned = set()
781 assigned.add(name)
785 if field.repeated and field.name not in assigned:
868 """Get the assigned value of an attribute.
888 """Reset assigned value for field.
947 Messages may only be assigned values that are fields.
1072 The assigned field instance can't be pickled if it belongs to a Message
1349 """Validate value assigned t
[all...]
/external/ImageMagick/www/api/
H A Dannotate.php84 s scene number (from input unless re-assigned)
H A Dchannel.php103 <p>CombineImages() combines one or more images into a single image. The grayscale value of the pixels of each image in the sequence is assigned in order to the specified channels of the combined image. The typical ordering would be image 1 =&gt; Red, 2 =&gt; Green, 3 =&gt; Blue, etc.</p>

Completed in 2982 milliseconds

12