/external/valgrind/none/tests/mips64/ |
D | cvm_atomic_thread.stdout.exp-LE | 12 laa and saa: base1: 6913974, base2: 21777111 13 laad and saad: base1: 6913974, base2: 23901514779351 14 law and saa: base1: 3456986, base2: 2153186724 15 lawd and saad: base1: 3456986, base2: 11950752204196 16 lai and saa: base1: 6913974, base2: 21777111 17 laid and saad: base1: 6913974, base2: 23901514779351 18 las and saa: base1: 4294967295, base2: 4288053323 19 lasd and saad: base1: -1, base2: -6913973 20 lad and saa: base1: 4288053322, base2: 4273190185 21 ladd and saad: base1: -6913974, base2: -23901514779351 [all …]
|
D | cvm_atomic_thread.c | 261 #define TRIOP_AND_SAA(instruction, base1, base2, n) \ argument 267 : /*in*/ "r"(base1), "r"(base2), "r"(n) \ 272 #define TRIOP_AND_SAAD(instruction, base1, base2, n) \ argument 278 : /*in*/ "r"(base1), "r"(base2), "r"(n) \ 283 #define BINOP_AND_SAA(instruction, base1, base2) \ argument 289 : /*in*/ "r"(base1), "r"(base2) \ 294 #define BINOP_AND_SAAD(instruction, base1, base2) \ argument 300 : /*in*/ "r"(base1), "r"(base2) \
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/ |
D | CommonSuperclassTest.java | 189 String base1 = "Liface/base1;"; in testGetCommonSuperclass_interfaces() local 206 superclassTest(base1, base1, base1); in testGetCommonSuperclass_interfaces() 207 superclassTest(base1, base1, sub1); in testGetCommonSuperclass_interfaces() 208 superclassTest(base1, base1, classsub1); in testGetCommonSuperclass_interfaces() 209 superclassTest(base1, base1, sub2); in testGetCommonSuperclass_interfaces() 210 superclassTest(base1, base1, classsub2); in testGetCommonSuperclass_interfaces() 211 superclassTest(base1, base1, sub3); in testGetCommonSuperclass_interfaces() 212 superclassTest(base1, base1, classsub3); in testGetCommonSuperclass_interfaces() 213 superclassTest(base1, base1, sub4); in testGetCommonSuperclass_interfaces() 214 superclassTest(base1, base1, classsub4); in testGetCommonSuperclass_interfaces() [all …]
|
/external/webrtc/webrtc/voice_engine/test/cmd_test/ |
D | voe_cmd_test.cc | 53 printf("*** Error code = %i \n", base1->LastError()); \ 57 VoEBase* base1 = NULL; variable 130 base1 = VoEBase::GetInterface(m_voe); in main() 159 res = base1->Init(); in main() 161 printf("\nError calling Init: %d\n", base1->LastError()); in main() 166 res = base1->RegisterVoiceEngineObserver(my_observer); in main() 171 res = base1->GetVersion(tmp); in main() 179 base1->DeRegisterVoiceEngineObserver(); in main() 181 res = base1->Terminate(); in main() 184 if (base1) in main() [all …]
|
/external/skia/bench/ |
D | HairlinePathBench.cpp | 98 int base1 = 2 * rand.nextULessThan(hSize); in makePath() local 101 path->moveTo(SkIntToScalar(points[base1] + xTrans), in makePath() 102 SkIntToScalar(points[base1+1] + yTrans)); in makePath() 130 int base1 = 2 * rand.nextULessThan(hSize); in makePath() local 133 path->moveTo(SkIntToScalar(points[base1] + xTrans), in makePath() 134 SkIntToScalar(points[base1+1] + yTrans)); in makePath() 163 int base1 = 2 * rand.nextULessThan(hSize); in makePath() local 167 path->moveTo(SkIntToScalar(points[base1] + xTrans), in makePath() 168 SkIntToScalar(points[base1+1] + yTrans)); in makePath() 198 int base1 = 2 * rand.nextULessThan(hSize); in makePath() local [all …]
|
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
D | ComparableTimSort.java | 377 int base1 = runBase[i]; in mergeAt() local 382 if (DEBUG) assert base1 + len1 == base2; in mergeAt() 399 int k = gallopRight((Comparable<Object>)a[base2], a, base1, len1, 0); in mergeAt() 401 base1 += k; in mergeAt() 409 len2 = gallopLeft((Comparable<Object>)a[base1 + len1 - 1], a, base2, len2, len2 - 1); in mergeAt() 415 mergeLo(base1, len1, base2, len2); in mergeAt() 417 mergeHi(base1, len1, base2, len2); in mergeAt() 562 private void mergeLo (int base1, int len1, int base2, int len2) { 563 if (DEBUG) assert len1 > 0 && len2 > 0 && base1 + len1 == base2; 568 System.arraycopy(a, base1, tmp, 0, len1); [all …]
|
D | TimSort.java | 409 int base1 = runBase[i]; in mergeAt() local 414 if (DEBUG) assert base1 + len1 == base2; in mergeAt() 431 int k = gallopRight(a[base2], a, base1, len1, 0, c); in mergeAt() 433 base1 += k; in mergeAt() 441 len2 = gallopLeft(a[base1 + len1 - 1], a, base2, len2, len2 - 1, c); in mergeAt() 447 mergeLo(base1, len1, base2, len2); in mergeAt() 449 mergeHi(base1, len1, base2, len2); in mergeAt() 594 private void mergeLo (int base1, int len1, int base2, int len2) { 595 if (DEBUG) assert len1 > 0 && len2 > 0 && base1 + len1 == base2; 600 System.arraycopy(a, base1, tmp, 0, len1); [all …]
|
/external/v8/test/cctest/heap/ |
D | test-lab.cc | 173 Address base1 = AllocateLabBackingStore(heap, kLabSize); in TEST() local 174 Address limit1 = base1 + kLabSize; in TEST() 192 AllocationResult lab_backing_store1(HeapObject::FromAddress(base1)); in TEST() 220 VerifyIterable(base1, limit1, expected_sizes1); in TEST() 221 VerifyIterable(base1, limit2, expected_sizes2); in TEST() 229 Address base1 = AllocateLabBackingStore(heap, kLabSize); in TEST() local 230 Address base2 = base1 + kLabSize; in TEST() 234 AllocationResult lab_backing_store1(HeapObject::FromAddress(base1)); in TEST()
|
/external/libcxxabi/test/ |
D | catch_ptr_02.pass.cpp | 80 struct base1 {int x;}; struct 82 struct derived : base1, base2 {}; 124 assert ((unsigned long)p == 12+sizeof(base1)); in test7()
|
/external/clang/test/FixIt/ |
D | fixit-cxx11-attributes.cpp | 37 struct base1 {}; struct 42 …virtual [[b]] base1, // expected-error {{an attribute list cannot appear here}} expected-warning {…
|
/external/v8/tools/gyp/test/determinism/ |
D | gyptest-solibs.py | 20 base1 = open(test.built_file_path('c.ninja', subdir='obj')).read() variable 28 if base1 != contents1:
|
/external/llvm/test/Transforms/StraightLineStrengthReduce/NVPTX/ |
D | reassociate-geps-and-slsr.ll | 42 ; PTX: add.s64 [[base1:%rd[0-9]+]], [[arr]], [[i4]]; 44 ; PTX: ld.f32 {{%f[0-9]+}}, {{\[}}[[base1]]+20]; 50 ; PTX: add.s64 [[base2:%rd[0-9]+]], [[base1]], [[i4]];
|
/external/v8/test/mjsunit/ |
D | array-bounds-check-removal.js | 207 var base1 = ((base0 + 2)); 208 var base2 = ((base1 + 8) >> 2); 214 result += a[base1];
|
/external/testng/src/test/java/test/failures/ |
D | Base0.java | 7 public void base1() { in base1() method in Base0
|
/external/libxml2/ |
D | regressions.py | 36 def compFiles(res, expected, base1, base2): argument 37 l1 = len(base1) 42 j = string.find(res[i],base1)
|
/external/v8/test/cctest/compiler/ |
D | test-run-wasm-machops.cc | 58 Node* base1 = m.RelocatableIntPtrConstant( in RunLoadStoreRelocation() local 63 m.Store(rep.representation(), base1, index, load, kNoWriteBarrier); in RunLoadStoreRelocation()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | PluralSamples.java | 195 for (FixedDecimal base1 : original) { in fractions() 196 result.add((int)base1.integerValue); in fractions()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | PluralSamples.java | 193 for (FixedDecimal base1 : original) { in fractions() 194 result.add((int)base1.integerValue); in fractions()
|
/external/llvm/test/CodeGen/ARM/ |
D | ldstrex.ll | 124 %base1 = load i32*, i32** @base 125 %addr8 = bitcast i32* %base1 to i8*
|
/external/clang/tools/c-index-test/ |
D | c-index-test.c | 33 char* base1 = (char*)strrchr(path, '/'); in basename() local 35 if (base1 && base2) in basename() 36 return((base1 > base2) ? base1 + 1 : base2 + 1); in basename() 37 else if (base1) in basename() 38 return(base1 + 1); in basename() 46 char* base1 = (char*)strrchr(path, '/'); in dirname() local 48 if (base1 && base2) in dirname() 49 if (base1 > base2) in dirname() 50 *base1 = 0; in dirname() 53 else if (base1) in dirname() [all …]
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
D | p5-0x.cpp | 30 Base&& base1 = xvalue<Derived>(); in test_rvalue_refs()
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
D | nv50_ir_build_util.cpp | 333 int base1 = (baseSize2[mask] >> 0) & 0xf; in mkClobber() local 341 reg->reg.data.id = base + base1; in mkClobber()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderIntegerFunctionTests.cpp | 598 const deUint32 base1 = rnd.getUint32(); in getInputValues() local 602 in1[valueNdx*scalarSize + compNdx] = base1 >> adj1; in getInputValues() 689 const deInt32 base1 = (deInt32)rnd.getUint32(); in getInputValues() local 693 in1[valueNdx*scalarSize + compNdx] = base1 >> adj1; in getInputValues()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderIntegerFunctionTests.cpp | 731 const deUint32 base1 = rnd.getUint32(); in getInputValues() local 735 in1[valueNdx*scalarSize + compNdx] = base1 >> adj1; in getInputValues() 837 const deInt32 base1 = (deInt32)rnd.getUint32(); in getInputValues() local 841 in1[valueNdx*scalarSize + compNdx] = base1 >> adj1; in getInputValues()
|
/external/llvm/test/CodeGen/SystemZ/ |
D | frame-15.ll | 342 %base1 = ptrtoint float *%elem1 to i64 344 %addr1 = add i64 %base1, %index
|