HomeSort by relevance Sort by last modified time
    Searched defs:Merge (Results 26 - 50 of 55) sorted by null

12 3

  /external/v8/src/compiler/
common-operator.cc 428 "Merge", // name
631 const Operator* CommonOperatorBuilder::Merge(int control_input_count) {
644 "Merge", // name
934 return Merge(size);
    [all...]
node-matchers.h 582 explicit DiamondMatcher(Node* merge);
592 Node* Merge() const { return node(); }
597 DCHECK_EQ(Merge(), phi->InputAt(2));
598 return phi->InputAt(if_true_ == Merge()->InputAt(0) ? 0 : 1);
604 DCHECK_EQ(Merge(), phi->InputAt(2));
605 return phi->InputAt(if_true_ == Merge()->InputAt(0) ? 1 : 0);
bytecode-graph-builder.cc 18 // split and merge points in the control flow.
62 void Merge(Environment* other);
317 void BytecodeGraphBuilder::Environment::Merge(
319 // Create a merge of the control dependencies of both environments and update
325 // Create a merge of the effect dependencies of both environments and update
331 // Introduce Phi nodes for values that have differing input at merge points,
    [all...]
ast-graph-builder.cc     [all...]
register-allocator.cc 1018 void TopLevelLiveRange::Merge(TopLevelLiveRange* other, Zone* zone) {
    [all...]
wasm-compiler.cc 214 graph()->NewNode(common()->Merge(1), *control_ptr);
317 bool WasmGraphBuilder::IsPhiWithMerge(Node* phi, Node* merge) {
319 NodeProperties::GetControlInput(phi) == merge;
322 void WasmGraphBuilder::AppendToMerge(Node* merge, Node* from) {
323 DCHECK(IrOpcode::IsMergeOpcode(merge->opcode()));
324 merge->AppendInput(jsgraph()->zone(), from);
325 int new_size = merge->InputCount();
327 merge, jsgraph()->common()->ResizeMergeOrPhi(merge->op(), new_size));
338 Node* WasmGraphBuilder::Merge(unsigned count, Node** controls)
1997 Node* merge = graph()->NewNode(common->Merge(2), if_true, if_false); local
2220 Node* merge = graph()->NewNode(common->Merge(2), if_not_smi, if_smi); local
    [all...]
  /external/v8/src/crankshaft/
hydrogen-check-elimination.cc 143 // Support for global analysis with HFlowEngine: Merge given state with
145 static HCheckTable* Merge(HCheckTable* succ_state, HBasicBlock* succ_block,
154 return succ_state->Merge(succ_block, pred_state, pred_block, zone);
309 // Merge this state with the other incoming state.
310 HCheckTable* Merge(HBasicBlock* succ, HCheckTable* that,
  /art/runtime/gc/allocator/
rosalloc.h 221 // Merge the given list into this list. Empty the given list.
225 // the merge if 'this' SlotFreeList has kUseTail == false, which we'd like to avoid.
226 void Merge(SlotFreeList<true>* list) {
410 // Merge the thread local free list to the free list. Used when a thread-local run becomes
413 // Merge the bulk free list to the free list. Used in a bulk free.
415 // Merge the bulk free list to the thread local free list. In a bulk free, as a two-step
417 // can write without a lock, and later acquire a lock once per run to merge the bulk free list
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/BroadphaseCollision/
btDbvt.h 158 DBVT_INLINE friend void Merge( const btDbvtAabbMm& a,
653 DBVT_INLINE void Merge( const btDbvtAabbMm& a,
  /external/pdfium/core/src/fpdftext/
fpdf_text.cpp 230 pPrevLine->Merge(pBaseLine);
579 void CTextBaseLine::Merge(CTextBaseLine* pOther) {
  /external/protobuf/src/google/protobuf/
repeated_field.h 246 // static void Merge(const Type& from, Type* to);
366 static void Merge(const GenericType& from, GenericType* to) {
374 inline void GenericTypeHandler<MessageLite>::Merge(
412 static void Merge(const string& from, string* to) { *to = from; }
931 TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
    [all...]
text_format.cc     [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 219 // static void Merge(const Type& from, Type* to);
338 static void Merge(const GenericType& from, GenericType* to) {
346 inline void GenericTypeHandler<MessageLite>::Merge(
384 static void Merge(const string& from, string* to) { *to = from; }
866 TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
repeated_field.h 219 // static void Merge(const Type& from, Type* to);
338 static void Merge(const GenericType& from, GenericType* to) {
346 inline void GenericTypeHandler<MessageLite>::Merge(
384 static void Merge(const string& from, string* to) { *to = from; }
866 TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
    [all...]
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
repeated_field.h 219 // static void Merge(const Type& from, Type* to);
338 static void Merge(const GenericType& from, GenericType* to) {
346 inline void GenericTypeHandler<MessageLite>::Merge(
384 static void Merge(const string& from, string* to) { *to = from; }
866 TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
    [all...]
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
repeated_field.h 219 // static void Merge(const Type& from, Type* to);
338 static void Merge(const GenericType& from, GenericType* to) {
346 inline void GenericTypeHandler<MessageLite>::Merge(
384 static void Merge(const string& from, string* to) { *to = from; }
866 TypeHandler::Merge(other.template Get<TypeHandler>(i), Add<TypeHandler>());
    [all...]
  /external/v8/tools/gcmole/
gcmole.cc 294 static ExprEffect Merge(ExprEffect a, ExprEffect b);
329 static Environment Merge(const Environment& l,
468 ExprEffect ExprEffect::Merge(ExprEffect a, ExprEffect b) {
641 return ExprEffect::Merge(VisitExpr(expr->getTrueExpr(), after_cond),
670 return ExprEffect::Merge(VisitExpr(lhs, env), VisitExpr(rhs, env));
928 in_ = Environment::Merge(in_, env);
949 out_ = Environment::Merge(out_, env);
1036 return Environment::Merge(then_out, else_out);
1046 Environment in = Environment::Merge(env, block_->in());
1052 Environment in = Environment::Merge(env, block_->in())
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
repeated_field.h 364 // static void Merge(const Type& from, Type* to);
541 // pointer to the type-specific (templated) inner allocate/merge loop.
581 GOOGLE_ATTRIBUTE_NOINLINE static void Merge(const GenericType& from,
603 void GenericTypeHandler<GenericType>::Merge(const GenericType& from,
608 // NewFromPrototype() and Merge() cannot be defined here; if they're declared
627 void GenericTypeHandler<MessageLite>::Merge(const MessageLite& from,
634 void GenericTypeHandler<string>::Merge(const string& from,
709 static inline void Merge(const string& from, string* to) { *to = from; }
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
mergemod.h     [all...]
  /external/v8/src/heap/
spaces.h     [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
CollisionJNI.java     [all...]
  /external/robolectric/v1/lib/main/
h2-1.2.147.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler/0.12.613/
kotlin-compiler-0.12.613.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/0.13.1513/
kotlin-compiler-embeddable-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-compiler-embeddable/0.13.1514/
kotlin-compiler-embeddable-0.13.1514.jar 

Completed in 1151 milliseconds

12 3