HomeSort by relevance Sort by last modified time
    Searched defs:merge (Results 151 - 175 of 1235) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/pointers/
_slist.h 385 void merge(_Self& __x) { _M_impl.merge(__x._M_impl); } function in class:slist
398 void merge(_Self& __x, _StrictWeakOrdering __comp) function in class:slist
399 { _M_impl.merge(__x._M_impl, _STLP_PRIV _BinaryPredWrapper<_StorageType, _Tp, _StrictWeakOrdering>(__comp)); }
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
linkValidate.cpp 68 // Merge the information from 'unit' into 'this'
70 void TIntermediate::merge(TInfoSink& infoSink, TIntermediate& unit) function in class:glslang::TIntermediate
171 // Getting this far means we have two existing trees to merge...
191 // Merge the function bodies and global-level initializers from unitGlobals into globals.
210 // Merge the global objects, just in front of the linker objects
215 // Merge the linker objects from unitLinkerObjects into linkerObjects.
220 // Error check and merge the linker objects (duplicates should not be created)
223 bool merge = true; local
230 merge = false;
248 if (merge)
    [all...]
  /system/core/libutils/include/utils/
SortedVector.h 114 ssize_t merge(const Vector<TYPE>& vector);
115 ssize_t merge(const SortedVector<TYPE>& vector);
233 ssize_t SortedVector<TYPE>::merge(const Vector<TYPE>& vector) { function in class:android::SortedVector
234 return SortedVectorImpl::merge(reinterpret_cast<const VectorImpl&>(vector));
238 ssize_t SortedVector<TYPE>::merge(const SortedVector<TYPE>& vector) { function in class:android::SortedVector
239 return SortedVectorImpl::merge(reinterpret_cast<const SortedVectorImpl&>(vector));
  /toolchain/binutils/binutils-2.25/gold/
attributes.cc 387 // Merge target-independent attributes from another Attribute_section_data
391 Attributes_section_data::merge( function in class:gold::Attributes_section_data
  /tools/loganalysis/src/com/android/loganalysis/item/
CompactMemInfoItem.java 59 public IItem merge(IItem other) throws ConflictingItemException { method in class:CompactMemInfoItem
LogcatItem.java 154 public LogcatItem merge(IItem other) throws ConflictingItemException { method in class:LogcatItem
ProcrankItem.java 164 public IItem merge(IItem other) throws ConflictingItemException { method in class:ProcrankItem
  /art/compiler/utils/
intrusive_forward_list.h 309 void merge(IntrusiveForwardList& other) { function in class:art::IntrusiveForwardList
310 merge(other, std::less<value_type>());
312 void merge(IntrusiveForwardList&& other) { function in class:art::IntrusiveForwardList
313 merge(other); // Use l-value overload.
316 void merge(IntrusiveForwardList& other, Compare cmp) { function in class:art::IntrusiveForwardList
336 void merge(IntrusiveForwardList&& other, Compare cmp) { function in class:art::IntrusiveForwardList
337 merge(other, cmp); // Use l-value overload.
352 merge(second_half, cmp);
  /cts/tests/tests/telecom/src/android/telecom/cts/
MockConference.java 85 mRemoteConference.merge();
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 253 * @param other {@code non-null;} to merge
254 * @return {@code non-null;} this instance if merge was a no-op, or
262 newPrimary = primary.merge(other.getPrimary());
282 resultla = la1.merge(la2);
304 * @param other {@code non-null;} to merge
305 * @return {@code non-null;} this instance if merge was a no-op, or
313 newPrimary = primary.merge(other.getPrimary());
323 resultla = la.merge(other);
344 public LocalsArraySet merge(LocalsArray other) { method in class:LocalsArraySet
389 newPrimary = primary.merge(other.getPrimary())
    [all...]
  /dalvik/dx/src/com/android/dx/merge/
IndexMap.java 17 package com.android.dx.merge;
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
RangeExpression.py 69 self.merge()
83 def merge(self): member in class:RangeContainer
  /external/clang/lib/Analysis/
LiveVariables.cpp 94 merge(LiveVariables::LivenessValues valsA,
143 LiveVariablesImpl::merge(LiveVariables::LivenessValues valsA, function in class:LiveVariablesImpl
538 // Merge the values of all successor blocks.
543 val = LV->merge(val, LV->blocksBeginToLiveness[succ]);
  /external/iproute2/tc/
m_ipt.c 177 struct option *merge; local
185 merge = malloc(sizeof (struct option) * (num_new + num_old + 1));
186 memcpy(merge, oldopts, num_old * sizeof (struct option));
188 merge[num_old + i] = newopts[i];
189 merge[num_old + i].val += *option_offset;
191 memset(merge + num_old + num_new, 0, sizeof (struct option));
193 return merge;
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 194 // Merge the state before the jsr into the next instruction
197 merge(queue, frame, lookAhead(iter, pos)); method
200 merge(queue, frame, target); method
203 merge(queue, frame, lookAhead(iter, pos)); method
206 // Merge all exceptions that are reachable from this instruction.
276 private void merge(IntQueue queue, Frame frame, int target) { method in class:Analyzer
284 changed = old.merge(frame);
301 merge(queue, newFrame, exception.handler); method
328 newType = oldType.merge(newType);
350 merge(queue, frame, pos + iter.s32bitAt(index)) method
357 merge(queue, frame, target); method
404 merge(queue, frame, pos + iter.s32bitAt(index)); method
412 merge(queue, frame, target); method
    [all...]
  /external/llvm/include/llvm/ProfileData/
SampleProf.h 152 /// Merge the samples in \p Other into this record.
154 sampleprof_error merge(const SampleRecord &Other, uint64_t Weight = 1) { function in class:llvm::sampleprof::SampleRecord
257 /// Merge the samples in \p Other into this one.
259 sampleprof_error merge(const FunctionSamples &Other, uint64_t Weight = 1) { function in class:llvm::sampleprof::FunctionSamples
267 MergeResult(Result, BodySamples[Loc].merge(Rec, Weight));
272 MergeResult(Result, functionSamplesAt(Loc).merge(Rec, Weight));
  /frameworks/compile/mclinker/include/mcld/ADT/
BinTree.h 425 /// join - create a leaf node and merge it in the tree.
443 /// merge - merge the tree
449 BinaryTree& merge(TreeIteratorBase& pPosition, BinaryTree& pTree) { function in class:mcld::BinaryTree
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFAttributeData.cpp 88 // Helper Functions for merge()
141 // End Helper Functions for merge()
144 bool ARMELFAttributeData::merge(const LinkerConfig& pConfig, function in class:mcld::ARMELFAttributeData
159 // Need value of Tag_also_compatible_with in the input for merge.
169 // need value of Tag_CPU_arch in the input for merge
174 // need value of Tag_CPU_arch in the input for merge
179 // need value of Tag_HardFP_use in the input for merge
184 // need value of Tag_FP_arch in the input for merge
189 // need value of Tag_CPU_arch in the input for merge
194 // need value of Tag_ABI_FP_number_model in the input for merge
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneCall.java 261 merge(ImsPhoneCall that, State state) { method in class:ImsPhoneCall
272 Rlog.d(LOG_TAG, "merge: conference connect time is 0");
277 Rlog.d(LOG_TAG, "merge(" + mCallContext + "): " + that + "state = "
  /libcore/luni/src/test/java/libcore/java/util/
MapDefaultMethodTester.java 407 assertEquals(10.0, m.merge(1, 10.0, (v1, v2) -> v2));
412 assertEquals(25.0, m.merge(1, 15.0, (v1, v2) -> v1 + v2));
417 m.merge(1, 10.0, (k, v) -> null);
422 m.merge(1, 5.0, null);
428 assertEquals(15.0, m.merge(null, 15.0, (v1, v2) -> v2));
432 m.merge(null, 15.0, (v1, v2) -> v2);
  /prebuilts/gcc/darwin-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/gcov-src/
libgcov.h 226 idiom. The number of counters is determined from the merge pointer
240 /* Type of function used to merge counters. */
253 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for member in struct:gcov_info
298 /* The merge function that just sums the counters. */
301 /* The merge function to choose the most common value. */
304 /* The merge function to choose the most common difference between
308 /* The merge function that just ors the counters together. */
311 /* The merge function used for direct call counters. */
314 /* The merge function used for indirect call counters. *
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.9/lib/gcc/arm-linux-androideabi/4.9.x/gcov-src/
libgcov.h 226 idiom. The number of counters is determined from the merge pointer
240 /* Type of function used to merge counters. */
253 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for member in struct:gcov_info
298 /* The merge function that just sums the counters. */
301 /* The merge function to choose the most common value. */
304 /* The merge function to choose the most common difference between
308 /* The merge function that just ors the counters together. */
311 /* The merge function used for direct call counters. */
314 /* The merge function used for indirect call counters. *
    [all...]
  /prebuilts/gcc/darwin-x86/mips/mips64el-linux-android-4.9/lib/gcc/mips64el-linux-android/4.9.x/gcov-src/
libgcov.h 226 idiom. The number of counters is determined from the merge pointer
240 /* Type of function used to merge counters. */
253 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for member in struct:gcov_info
298 /* The merge function that just sums the counters. */
301 /* The merge function to choose the most common value. */
304 /* The merge function to choose the most common difference between
308 /* The merge function that just ors the counters together. */
311 /* The merge function used for direct call counters. */
314 /* The merge function used for indirect call counters. *
    [all...]
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/lib/gcc/x86_64-linux-android/4.9.x/gcov-src/
libgcov.h 226 idiom. The number of counters is determined from the merge pointer
240 /* Type of function used to merge counters. */
253 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for member in struct:gcov_info
298 /* The merge function that just sums the counters. */
301 /* The merge function to choose the most common value. */
304 /* The merge function to choose the most common difference between
308 /* The merge function that just ors the counters together. */
311 /* The merge function used for direct call counters. */
314 /* The merge function used for indirect call counters. *
    [all...]
  /prebuilts/gcc/linux-x86/aarch64/aarch64-linux-android-4.9/lib/gcc/aarch64-linux-android/4.9.x/gcov-src/
libgcov.h 226 idiom. The number of counters is determined from the merge pointer
240 /* Type of function used to merge counters. */
253 gcov_merge_fn merge[GCOV_COUNTERS]; /* merge functions (null for member in struct:gcov_info
298 /* The merge function that just sums the counters. */
301 /* The merge function to choose the most common value. */
304 /* The merge function to choose the most common difference between
308 /* The merge function that just ors the counters together. */
311 /* The merge function used for direct call counters. */
314 /* The merge function used for indirect call counters. *
    [all...]

Completed in 1466 milliseconds

1 2 3 4 5 67 8 91011>>