HomeSort by relevance Sort by last modified time
    Searched defs:mem2 (Results 1 - 20 of 20) sorted by null

  /external/valgrind/main/none/tests/mips32/
MemCpyTest.c 31 unsigned int mem2[100]; variable
37 mem2[i] = 0;
41 "move $a2, %2\n\t" // a2 addr mem2
52 : "r" (mem1), "r" (mem2)
56 printf("0x%x, 0x%x, 0x%x, 0x%x\n", mem2[i], mem2[i+1],
57 mem2[i+2], mem2[i+3]);
LoadStore.c 17 unsigned int mem2[] = { variable
65 : "r" (mem2), "r" (RTval) \
335 ppMem0(mem2, 12);
337 ppMem0(mem2, 12);
339 ppMem0(mem2, 12);
341 ppMem0(mem2, 12);
343 ppMem0(mem2, 12);
345 ppMem0(mem2, 12);
347 ppMem0(mem2, 12);
349 ppMem0(mem2, 12)
    [all...]
LoadStore1.c 17 unsigned int mem2[] = { variable
65 : "r" (mem2), "r" (RTval) \
335 ppMem0(mem2, 12);
337 ppMem0(mem2, 12);
339 ppMem0(mem2, 12);
341 ppMem0(mem2, 12);
343 ppMem0(mem2, 12);
345 ppMem0(mem2, 12);
347 ppMem0(mem2, 12);
349 ppMem0(mem2, 12)
    [all...]
  /external/chromium_org/base/memory/
ref_counted_memory_unittest.cc 31 scoped_refptr<RefCountedMemory> mem2; local
34 mem2 = new RefCountedBytes(data2, 3);
36 EXPECT_EQ(3U, mem2->size());
37 EXPECT_EQ(12U, mem2->front()[0]);
38 EXPECT_EQ(11U, mem2->front()[1]);
39 EXPECT_EQ(99U, mem2->front()[2]);
72 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2); local
74 EXPECT_TRUE(mem1->Equals(mem2));
80 EXPECT_FALSE(mem2->Equals(mem3));
  /external/valgrind/main/none/tests/mips64/
load_store_multiple.c 17 unsigned int mem2[] = { variable
64 : "r" (mem2), "r" (RTval) \
330 ppMem2(mem2, 12);
332 ppMem2(mem2, 12);
334 ppMem2(mem2, 12);
336 ppMem2(mem2, 12);
338 ppMem2(mem2, 12);
340 ppMem2(mem2, 12);
342 ppMem2(mem2, 12);
344 ppMem2(mem2, 12)
    [all...]
  /external/chromium_org/ppapi/generators/test_cgen/
interface.h 46 * int32_t (*mem2)(const struct ist* a);
55 int32_t (*mem2)(const struct ist* a); member in struct:ifaceFoo_1_0
  /external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 39 void mem2() const {count += 2;} function in struct:A_void_1
115 void (A_void_1::*fp)() const = &A_void_1::mem2;
126 void (A_void_1::*fp)() const = &A_void_1::mem2;
154 int mem2() const {return 4;} function in struct:A_int_1
193 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
194 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
196 assert(std::bind(&A_int_1::mem2, _1)(ap) == 4);
197 assert(std::bind(&A_int_1::mem2, ap)() == 4);
229 void mem2(int i) const {count += i;} function in struct:A_void_2
invoke_rvalue.pass.cpp 39 void mem2() const {count += 2;} function in struct:A_void_1
107 void (A_void_1::*fp)() const = &A_void_1::mem2;
117 void (A_void_1::*fp)() const = &A_void_1::mem2;
144 int mem2() const {return 4;} function in struct:A_int_1
178 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
179 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
181 assert(std::bind(&A_int_1::mem2, _1)(&a) == 4);
182 assert(std::bind(&A_int_1::mem2, &a)() == 4);
213 void mem2(int i) const {count += i;} function in struct:A_void_2
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 36 void mem2() const {++count;} function in struct:A_void_1
85 void (A_void_1::*fp)() const = &A_void_1::mem2;
115 int mem2() const {return 4;} function in struct:A_int_1
154 int (A_int_1::*fp)() const = &A_int_1::mem2;
193 void mem2(int i) const {count += i;} function in struct:A_void_2
246 void (A_void_2::*fp)(int) const = &A_void_2::mem2;
276 int mem2(int i) const {return i+2;} function in struct:A_int_2
318 int (A_int_2::*fp)(int) const = &A_int_2::mem2;
  /external/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.pass.cpp 39 void mem2() const {++count;} function in struct:A_void_1
87 void (A_void_1::*fp)() const = &A_void_1::mem2;
116 int mem2() const {return 4;} function in struct:A_int_1
154 int (A_int_1::*fp)() const = &A_int_1::mem2;
191 void mem2(int i) const {count += i;} function in struct:A_void_2
243 void (A_void_2::*fp)(int) const = &A_void_2::mem2;
272 int mem2(int i) const {return i+2;} function in struct:A_int_2
313 int (A_int_2::*fp)(int) const = &A_int_2::mem2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 39 void mem2() const {count += 2;} function in struct:A_void_1
115 void (A_void_1::*fp)() const = &A_void_1::mem2;
126 void (A_void_1::*fp)() const = &A_void_1::mem2;
154 int mem2() const {return 4;} function in struct:A_int_1
193 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
194 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
196 assert(std::bind(&A_int_1::mem2, _1)(ap) == 4);
197 assert(std::bind(&A_int_1::mem2, ap)() == 4);
229 void mem2(int i) const {count += i;} function in struct:A_void_2
invoke_rvalue.pass.cpp 39 void mem2() const {count += 2;} function in struct:A_void_1
107 void (A_void_1::*fp)() const = &A_void_1::mem2;
117 void (A_void_1::*fp)() const = &A_void_1::mem2;
144 int mem2() const {return 4;} function in struct:A_int_1
178 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
179 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
181 assert(std::bind(&A_int_1::mem2, _1)(&a) == 4);
182 assert(std::bind(&A_int_1::mem2, &a)() == 4);
213 void mem2(int i) const {count += i;} function in struct:A_void_2
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 36 void mem2() const {++count;} function in struct:A_void_1
85 void (A_void_1::*fp)() const = &A_void_1::mem2;
115 int mem2() const {return 4;} function in struct:A_int_1
154 int (A_int_1::*fp)() const = &A_int_1::mem2;
193 void mem2(int i) const {count += i;} function in struct:A_void_2
246 void (A_void_2::*fp)(int) const = &A_void_2::mem2;
276 int mem2(int i) const {return i+2;} function in struct:A_int_2
318 int (A_int_2::*fp)(int) const = &A_int_2::mem2;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.pass.cpp 39 void mem2() const {++count;} function in struct:A_void_1
87 void (A_void_1::*fp)() const = &A_void_1::mem2;
116 int mem2() const {return 4;} function in struct:A_int_1
154 int (A_int_1::*fp)() const = &A_int_1::mem2;
191 void mem2(int i) const {count += i;} function in struct:A_void_2
243 void (A_void_2::*fp)(int) const = &A_void_2::mem2;
272 int mem2(int i) const {return i+2;} function in struct:A_int_2
313 int (A_int_2::*fp)(int) const = &A_int_2::mem2;
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator_test.cc 425 FencedAllocator::Offset mem2 = allocator->Alloc(kAllocSize); local
427 EXPECT_NE(mem2, FencedAllocator::kInvalidOffset);
451 allocator->Free(mem2);
mapped_memory_unittest.cc 195 void* mem2 = manager_->Alloc(kSize, &id2, &offset2); local
196 EXPECT_EQ(mem1, mem2);
204 EXPECT_NE(mem2, mem3);
222 manager_->Free(mem2);
301 void* mem2 = manager_->Alloc(kSize, &id2, &offset2); local
306 ASSERT_TRUE(mem2);
316 manager_->Free(mem2);
339 void* mem2 = manager_->Alloc(kChunkSize, &id2, &offset2); local
340 ASSERT_TRUE(mem2);
349 manager_->Free(mem2);
372 void* mem2 = manager_->Alloc(kSize, &id2, &offset2); local
436 void* mem2 = manager_->Alloc(kSize, &id2, &offset2); local
    [all...]
gles2_implementation_unittest.cc 782 ExpectedMemoryInfo mem2 = GetExpectedMemory( local
792 kTestSize - MaxTransferBufferSize(), mem2.id, mem2.offset);
802 mem2.ptr, expected_data + MaxTransferBufferSize(),
902 ExpectedMemoryInfo mem2 = GetExpectedMemory(kPaddedString2Size); local
911 kBucketId, kString1Size, kString2Size, mem2.id, mem2.offset);
1006 ExpectedMemoryInfo mem2 = GetExpectedMemory(kSize2); local
1074 ExpectedMemoryInfo mem2 = GetExpectedMemory(kSize2); local
1152 ExpectedMemoryInfo mem2 = GetExpectedMemory(kSize1); local
1236 ExpectedMemoryInfo mem2 = GetExpectedMemory(kSize1); local
1347 ExpectedMemoryInfo mem2 = GetExpectedMemory(kSize1); local
1437 ExpectedMemoryInfo mem2 = GetExpectedMemory(kSize1); local
1541 ExpectedMemoryInfo mem2 = GetExpectedResultMemory(16); local
1657 ExpectedMemoryInfo mem2 = local
2326 ExpectedMemoryInfo mem2 = GetExpectedMemory(sizeof(pixels)); local
2380 ExpectedMemoryInfo mem2 = GetExpectedMemory(half_size); local
2476 ExpectedMemoryInfo mem2 = GetExpectedMemory(sub_2_high_size); local
2906 ExpectedMemoryInfo mem2 = GetExpectedMemory(kUsableSize); local
    [all...]
  /external/clang/test/CodeGenCXX/
value-init.cpp 74 int S::*mem2; member in class:ptrmem::S::S
82 return s->*S().mem2;
  /external/chromium_org/third_party/opus/src/celt/
pitch.c 113 opus_val32 mem0, mem1, mem2, mem3, mem4; local
121 mem2=mem[2];
129 sum = MAC16_16(sum,num2,mem2);
133 mem3 = mem2;
134 mem2 = mem1;
141 mem[2]=mem2;
  /external/libopus/celt/
pitch.c 113 opus_val32 mem0, mem1, mem2, mem3, mem4; local
121 mem2=mem[2];
129 sum = MAC16_16(sum,num2,mem2);
133 mem3 = mem2;
134 mem2 = mem1;
141 mem[2]=mem2;

Completed in 547 milliseconds