HomeSort by relevance Sort by last modified time
    Searched refs:pos1 (Results 76 - 100 of 183) sorted by null

1 2 34 5 6 7 8

  /external/v8/src/compiler/
register-allocator.h 45 static bool ExistsGapPositionBetween(LifetimePosition pos1,
47 if (pos1 > pos2) std::swap(pos1, pos2);
48 LifetimePosition next(pos1.value_ + 1);
    [all...]
  /external/v8/src/debug/
liveedit.h 151 // of array of triplets (pos1, pos1_end, pos2_end) describing list
215 virtual void AddChunk(int pos1, int pos2, int len1, int len2) = 0;
  /frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
SortedListTest.java 293 int pos1 = random.nextInt(count); local
295 if (pos1 != pos2) {
296 Item temp = items[pos1];
297 items[pos1] = items[pos2];
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libwebm/
mkvparser.cpp 4562 long long pos1 = start; local
5056 long long pos1 = start; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDecimalFormatAPIC.java 105 FieldPosition pos1 = new FieldPosition(0); local
110 res1 = def.format(d, res1, pos1);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatAPIC.java 101 FieldPosition pos1 = new FieldPosition(0); local
106 res1 = def.format(d, res1, pos1);
  /bionic/tests/
stdio_test.cpp 696 fpos_t pos1; local
701 EXPECT_EQ(0, fgetpos(fp, &pos1));
716 ASSERT_EQ(0, static_cast<off_t>(pos1));
726 ASSERT_EQ(0, fsetpos(fp, &pos1));
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/Featherstone/
btMultiBodyConstraintSolver.cpp 271 const btVector3& pos1 = cp.getPositionWorldOnA(); local
281 rel_pos1 = pos1 - bodyA->getWorldTransform().getOrigin();
294 rel_pos1 = pos1 - multiBodyA->getBasePos();
297 rel_pos1 = pos1 - multiBodyA->getLink(solverConstraint.m_linkA).m_cachedWorldTransform.getOrigin();
705 // const btVector3& pos1 = cp.getPositionWorldOnA();
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
btMprPenetration.h 130 inline void btMprSimplexSwap(btMprSimplex_t *s, size_t pos1, size_t pos2)
134 btMprSupportCopy(&supp, &s->ps[pos1]);
135 btMprSupportCopy(&s->ps[pos1], &s->ps[pos2]);
  /external/opencv3/3rdparty/libwebp/enc/
frame.c 472 uint64_t pos1, pos2, pos3; local
479 pos1 = VP8BitWriterPos(bw);
513 it->luma_bits_ = pos2 - pos1;
  /external/webp/src/enc/
frame.c 299 uint64_t pos1, pos2, pos3; local
306 pos1 = VP8BitWriterPos(bw);
340 it->luma_bits_ = pos2 - pos1;
  /external/compiler-rt/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-2629532/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-2658975/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-2690385/lib64/clang/3.8/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/sanitizer/
linux_syscall_hooks.h     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringRefactoring.java 778 int pos1 = 0; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
dcfmapts.cpp 180 FieldPosition pos1(0), pos2(0), pos3(0), pos4(0);
182 res1 = def.format(d, res1, pos1);
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_insert/
size_string_size_size.pass.cpp 13 // insert(size_type pos1, const basic_string<charT,traits,Allocator>& str,
25 test(S s, typename S::size_type pos1, S str, typename S::size_type pos2,
32 s.insert(pos1, str, pos2, n);
34 assert(pos1 <= old_size && pos2 <= str.size());
39 assert(pos1 > old_size || pos2 > str.size());
46 test_npos(S s, typename S::size_type pos1, S str, typename S::size_type pos2, S expected)
52 s.insert(pos1, str, pos2);
54 assert(pos1 <= old_size && pos2 <= str.size());
59 assert(pos1 > old_size || pos2 > str.size());
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_insert/
size_string_size_size.pass.cpp 13 // insert(size_type pos1, const basic_string<charT,traits,Allocator>& str,
25 test(S s, typename S::size_type pos1, S str, typename S::size_type pos2,
32 s.insert(pos1, str, pos2, n);
34 assert(pos1 <= old_size && pos2 <= str.size());
39 assert(pos1 > old_size || pos2 > str.size());
46 test_npos(S s, typename S::size_type pos1, S str, typename S::size_type pos2, S expected)
52 s.insert(pos1, str, pos2);
54 assert(pos1 <= old_size && pos2 <= str.size());
59 assert(pos1 > old_size || pos2 > str.size());
    [all...]

Completed in 3585 milliseconds

1 2 34 5 6 7 8