HomeSort by relevance Sort by last modified time
    Searched refs:base2 (Results 26 - 50 of 61) sorted by null

12 3

  /prebuilts/ndk/r11/platforms/android-9/arch-x86/usr/include/asm/
desc_defs.h 29 unsigned limit : 4, avl : 1, l : 1, d : 1, g : 1, base2 : 8; member in struct:desc_struct
65 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8; member in struct:ldttss_desc
  /external/valgrind/none/tests/mips64/
cvm_atomic_thread.c 261 #define TRIOP_AND_SAA(instruction, base1, base2, n) \
267 : /*in*/ "r"(base1), "r"(base2), "r"(n) \
272 #define TRIOP_AND_SAAD(instruction, base1, base2, n) \
278 : /*in*/ "r"(base1), "r"(base2), "r"(n) \
283 #define BINOP_AND_SAA(instruction, base1, base2) \
289 : /*in*/ "r"(base1), "r"(base2) \
294 #define BINOP_AND_SAAD(instruction, base1, base2) \
300 : /*in*/ "r"(base1), "r"(base2) \
419 printf("laa and saa: base1: %u, base2: %u\n", *p1[7], *p1[8]);
420 printf("laad and saad: base1: %lld, base2: %lld\n", *p2[7], *p2[8])
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ComparableTimSort.java 441 int base2 = runBase[i + 1]; local
444 assert base1 + len1 == base2; local
462 int k = gallopRight((Comparable<Object>) a[base2], a, base1, len1, 0);
474 base2, len2, len2 - 1);
481 mergeLo(base1, len1, base2, len2);
483 mergeHi(base1, len1, base2, len2);
634 * second run (a[base1] > a[base2]), and the last element of the first run
643 * @param base2 index of first element in second run to be merged
648 private void mergeLo(int base1, int len1, int base2, int len2) {
649 assert len1 > 0 && len2 > 0 && base1 + len1 == base2;
    [all...]
TimSort.java 475 int base2 = runBase[i + 1]; local
478 assert base1 + len1 == base2; local
496 int k = gallopRight(a[base2], a, base1, len1, 0, c);
507 len2 = gallopLeft(a[base1 + len1 - 1], a, base2, len2, len2 - 1, c);
514 mergeLo(base1, len1, base2, len2);
516 mergeHi(base1, len1, base2, len2);
668 * second run (a[base1] > a[base2]), and the last element of the first run
677 * @param base2 index of first element in second run to be merged
681 private void mergeLo(int base1, int len1, int base2, int len2) {
682 assert len1 > 0 && len2 > 0 && base1 + len1 == base2;
    [all...]
  /art/runtime/
mem_map_test.cc 469 uint8_t* base2 = m2->Begin(); local
470 ASSERT_TRUE(base2 != nullptr) << error_msg;
471 ASSERT_EQ(base2, base1 + 4 * page_size);
474 std::unique_ptr<MemMap> m3(m2->RemapAtEnd(base2 + 3 * page_size,
480 ASSERT_EQ(base3, base2 + 3 * page_size);
486 uint8_t* end2 = base2 + m2->Size();
493 ASSERT_FALSE(IsAlignedParam(base2, 2 * page_size));
498 ASSERT_TRUE(IsAlignedParam(base2, 2 * page_size));
524 EXPECT_EQ(m2->Begin(), base2 + page_size);
533 EXPECT_EQ(m2->Begin(), base2);
    [all...]
dex_file_verifier_test.cc 278 uint8_t base2 = static_cast<uint8_t>(mask & 0x7F); local
279 *(method_flags_ptr++) = (base2 | 0x80);
880 uint8_t base2 = static_cast<uint8_t>(mask & 0x7F); local
    [all...]
  /art/runtime/arch/x86/
thread_x86.cc 35 unsigned limit: 4, avl: 1, l: 1, d: 1, g: 1, base2: 8; member in struct:descriptor_table_entry_t
68 entry.base2 = (base & 0xff000000) >> 24;
  /cts/tests/tests/util/src/android/util/cts/
TypedValueTest.java 120 final float base2 = 1.1f; local
124 assertEquals(expected2, TypedValue.complexToFraction(data2, base2, pbase2), 0.0f);
  /external/libxml2/
regressions.py 36 def compFiles(res, expected, base1, base2):
51 j = string.find(exp[i],base2)
runtest.c 3044 const char *base2; local
3221 const char *base2; local
3310 const char *base2; local
    [all...]
  /art/compiler/utils/arm/
assembler_arm_test.h 118 std::string base2 = base; local
120 size_t imm2_index = base2.find(IMM2_TOKEN);
125 base2.replace(imm2_index, ConstexprStrLen(IMM2_TOKEN), imm_string);
129 std::string base3 = base2;
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-0x.cpp 34 Base&& base2 = prvalue<Base>(); local
  /cts/tests/tests/widget/src/android/widget/cts/
RemoteViewsTest.java 310 long base2 = -50; local
319 mRemoteViews.setChronometer(R.id.remoteView_chronometer, base2, "HH:MM:SS",
322 assertEquals(base2, chronometer.getBase());
713 long base2 = -50; local
720 mRemoteViews.setLong(R.id.remoteView_chronometer, "setBase", base2);
722 assertEquals(base2, chronometer.getBase());
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 36 char* base2 = (char*)strrchr(path, '\\'); local
37 if (base1 && base2)
38 return((base1 > base2) ? base1 + 1 : base2 + 1);
41 else if (base2)
42 return(base2 + 1);
49 char* base2 = (char*)strrchr(path, '\\'); local
50 if (base1 && base2)
51 if (base1 > base2)
54 *base2 = 0
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/tr1/
random.h     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/tr1/
random.h     [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
random.h     [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_build_util.cpp 338 int base2 = (baseSize2[mask] >> 8) & 0xf; local
350 reg->reg.data.id = base + base2;
  /toolchain/binutils/binutils-2.25/binutils/
srconv.c 110 static int base2 = 0x2018; variable
118 ids2[x] = base2++;
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 515 constexpr bool base2 = &e.c[1] < &e.e.f; // expected-error {{constant expression}} expected-note {{comparison of address of base class subobject 'C' of class 'E' to field 'e' has unspecified value}}
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_datetime.py     [all...]
  /external/python/cpython2/Lib/test/
test_datetime.py     [all...]

Completed in 940 milliseconds

12 3