HomeSort by relevance Sort by last modified time
    Searched defs:mem1 (Results 1 - 25 of 27) sorted by null

1 2

  /external/valgrind/main/none/tests/mips32/
MemCpyTest.c 3 unsigned int mem1[] = { variable
40 "move $s0, %1\n\t" // s0 addr mem1
52 : "r" (mem1), "r" (mem2)
LoadStore.c 10 unsigned int mem1[] = { variable
33 : "r" (mem1), "r" (RTval) \
75 printf("MEM1:\n");
168 ppMem(mem1, 16);
195 ppMem(mem1, 16);
222 ppMem(mem1, 16);
249 ppMem(mem1, 16);
276 ppMem(mem1, 16);
303 ppMem(mem1, 16);
330 ppMem(mem1, 16)
    [all...]
LoadStore1.c 10 unsigned int mem1[] = { variable
33 : "r" (mem1), "r" (RTval) \
75 printf("MEM1:\n");
168 ppMem(mem1, 16);
195 ppMem(mem1, 16);
222 ppMem(mem1, 16);
249 ppMem(mem1, 16);
276 ppMem(mem1, 16);
303 ppMem(mem1, 16);
330 ppMem(mem1, 16)
    [all...]
vfp.c 33 double mem1[] = { variable
176 : "r" (mem1), "r" (fs_d) \
198 : "r" (mem1), "r" (fs_d) \
244 printf("MEM1:\n");
258 printf("MEM1:\n");
409 ppMem(mem1, 16);
422 ppMem(mem1, 16);
  /external/chromium_org/base/memory/
ref_counted_memory_unittest.cc 65 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1); local
74 EXPECT_TRUE(mem1->Equals(mem2));
79 EXPECT_FALSE(mem1->Equals(mem3));
  /external/valgrind/main/none/tests/mips64/
load_store_multiple.c 10 unsigned int mem1[] = { variable
32 : "r" (mem1), "r" (RTval) \
74 printf("MEM1:\n");
163 ppMem(mem1, 16);
190 ppMem(mem1, 16);
217 ppMem(mem1, 16);
244 ppMem(mem1, 16);
271 ppMem(mem1, 16);
298 ppMem(mem1, 16);
325 ppMem(mem1, 16)
    [all...]
  /external/chromium_org/ppapi/generators/test_cgen/
interface.h 45 * int8_t (*mem1)(int16_t x, int32_t y);
54 int8_t (*mem1)(int16_t x, int32_t y); member in struct:ifaceFoo_1_0
  /external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 38 void mem1() {++count;} function in struct:A_void_1
92 void (A_void_1::*fp)() = &A_void_1::mem1;
103 void (A_void_1::*fp)() = &A_void_1::mem1;
153 int mem1() {return 3;} function in struct:A_int_1
184 assert(std::bind(&A_int_1::mem1, _1)(a) == 3);
185 assert(std::bind(&A_int_1::mem1, a)() == 3);
187 assert(std::bind(&A_int_1::mem1, _1)(ap) == 3);
188 assert(std::bind(&A_int_1::mem1, ap)() == 3);
228 void mem1(int i) {count += i;} function in struct:A_void_2
254 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), j)
    [all...]
invoke_rvalue.pass.cpp 38 void mem1() {++count;} function in struct:A_void_1
86 void (A_void_1::*fp)() = &A_void_1::mem1;
96 void (A_void_1::*fp)() = &A_void_1::mem1;
143 int mem1() {return 3;} function in struct:A_int_1
170 assert(std::bind(&A_int_1::mem1, _1)(A_int_1()) == 3);
171 assert(std::bind(&A_int_1::mem1, A_int_1())() == 3);
173 assert(std::bind(&A_int_1::mem1, _1)(&a) == 3);
174 assert(std::bind(&A_int_1::mem1, &a)() == 3);
212 void mem1(int i) {count += i;} function in struct:A_void_2
235 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), 3)
    [all...]
  /external/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 35 void mem1() {++count;} function in struct:A_void_1
71 void (A_void_1::*fp)() = &A_void_1::mem1;
114 int mem1() {return 3;} function in struct:A_int_1
144 int (A_int_1::*fp)() = &A_int_1::mem1;
192 void mem1(int i) {count += i;} function in struct:A_void_2
231 void (A_void_2::*fp)(int) = &A_void_2::mem1;
275 int mem1(int i) {return i+1;} function in struct:A_int_2
307 int(A_int_2::*fp)(int) = &A_int_2::mem1;
  /external/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.pass.cpp 38 void mem1() {++count;} function in struct:A_void_1
74 void (A_void_1::*fp)() = &A_void_1::mem1;
115 int mem1() {return 3;} function in struct:A_int_1
145 int (A_int_1::*fp)() = &A_int_1::mem1;
190 void mem1(int i) {count += i;} function in struct:A_void_2
229 void (A_void_2::*fp)(int) = &A_void_2::mem1;
271 int mem1(int i) {return i+1;} function in struct:A_int_2
303 int(A_int_2::*fp)(int) = &A_int_2::mem1;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 38 void mem1() {++count;} function in struct:A_void_1
92 void (A_void_1::*fp)() = &A_void_1::mem1;
103 void (A_void_1::*fp)() = &A_void_1::mem1;
153 int mem1() {return 3;} function in struct:A_int_1
184 assert(std::bind(&A_int_1::mem1, _1)(a) == 3);
185 assert(std::bind(&A_int_1::mem1, a)() == 3);
187 assert(std::bind(&A_int_1::mem1, _1)(ap) == 3);
188 assert(std::bind(&A_int_1::mem1, ap)() == 3);
228 void mem1(int i) {count += i;} function in struct:A_void_2
254 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), j)
    [all...]
invoke_rvalue.pass.cpp 38 void mem1() {++count;} function in struct:A_void_1
86 void (A_void_1::*fp)() = &A_void_1::mem1;
96 void (A_void_1::*fp)() = &A_void_1::mem1;
143 int mem1() {return 3;} function in struct:A_int_1
170 assert(std::bind(&A_int_1::mem1, _1)(A_int_1()) == 3);
171 assert(std::bind(&A_int_1::mem1, A_int_1())() == 3);
173 assert(std::bind(&A_int_1::mem1, _1)(&a) == 3);
174 assert(std::bind(&A_int_1::mem1, &a)() == 3);
212 void mem1(int i) {count += i;} function in struct:A_void_2
235 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), 3)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 35 void mem1() {++count;} function in struct:A_void_1
71 void (A_void_1::*fp)() = &A_void_1::mem1;
114 int mem1() {return 3;} function in struct:A_int_1
144 int (A_int_1::*fp)() = &A_int_1::mem1;
192 void mem1(int i) {count += i;} function in struct:A_void_2
231 void (A_void_2::*fp)(int) = &A_void_2::mem1;
275 int mem1(int i) {return i+1;} function in struct:A_int_2
307 int(A_int_2::*fp)(int) = &A_int_2::mem1;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/refwrap/refwrap.invoke/
invoke.pass.cpp 38 void mem1() {++count;} function in struct:A_void_1
74 void (A_void_1::*fp)() = &A_void_1::mem1;
115 int mem1() {return 3;} function in struct:A_int_1
145 int (A_int_1::*fp)() = &A_int_1::mem1;
190 void mem1(int i) {count += i;} function in struct:A_void_2
229 void (A_void_2::*fp)(int) = &A_void_2::mem1;
271 int mem1(int i) {return i+1;} function in struct:A_int_2
303 int(A_int_2::*fp)(int) = &A_int_2::mem1;
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator_test.cc 424 FencedAllocator::Offset mem1 = allocator->Alloc(kAllocSize); local
426 EXPECT_NE(mem1, FencedAllocator::kInvalidOffset);
441 mem1);
mapped_memory_unittest.cc 187 void* mem1 = manager_->Alloc(kSize, &id1, &offset1); local
188 ASSERT_TRUE(mem1);
194 manager_->Free(mem1);
196 EXPECT_EQ(mem1, mem2);
298 void* mem1 = manager_->Alloc(kSize, &id1, &offset1); local
305 ASSERT_TRUE(mem1);
315 manager_->Free(mem1);
330 void* mem1 = manager_->Alloc(kChunkSize, &id1, &offset1); local
331 ASSERT_TRUE(mem1);
348 manager_->Free(mem1);
363 void* mem1 = manager_->Alloc(kSize, &id1, &offset1); local
430 void* mem1 = manager_->Alloc(kSize, &id1, &offset1); local
    [all...]
gles2_implementation_unittest.cc 437 ExpectedMemoryInfo mem1 = transfer_buffer_->GetExpectedMemory( local
445 .WillOnce(SetMemory(mem1.ptr + sizeof(int_state), int_state))
780 ExpectedMemoryInfo mem1 = GetExpectedMemory(MaxTransferBufferSize()); local
788 MaxTransferBufferSize(), mem1.id, mem1.offset);
800 mem1.ptr, expected_data, MaxTransferBufferSize())))
901 ExpectedMemoryInfo mem1 = GetExpectedMemory(kPaddedString1Size); local
908 kBucketId, 0, kString1Size, mem1.id, mem1.offset);
940 ExpectedMemoryInfo mem1 = GetExpectedMemory(MaxTransferBufferSize()) local
1005 ExpectedMemoryInfo mem1 = GetExpectedMemory(kSize1); local
1073 ExpectedMemoryInfo mem1 = GetExpectedMemory(kSize1); local
1151 ExpectedMemoryInfo mem1 = GetExpectedMemory(kIndexSize); local
1235 ExpectedMemoryInfo mem1 = GetExpectedMemory(kIndexSize); local
1346 ExpectedMemoryInfo mem1 = GetExpectedResultMemory(sizeof(uint32)); local
1436 ExpectedMemoryInfo mem1 = GetExpectedMemory(kIndexSize); local
1615 ExpectedMemoryInfo mem1 = GetExpectedResultMemory( local
1653 ExpectedMemoryInfo mem1 = local
1694 ExpectedMemoryInfo mem1 = local
1722 ExpectedMemoryInfo mem1 = GetExpectedMemory(kSize); local
1964 ExpectedMemoryInfo mem1 = GetExpectedMemory(kPNamesSize + kResultsSize); local
2072 ExpectedMemoryInfo mem1 = local
2116 ExpectedMemoryInfo mem1 = GetExpectedMemory(MaxTransferBufferSize()); local
2308 ExpectedMemoryInfo mem1 = GetExpectedMemory(sizeof(pixels)); local
2379 ExpectedMemoryInfo mem1 = GetExpectedMemory(half_size); local
2475 ExpectedMemoryInfo mem1 = GetExpectedMemory(sub_2_high_size); local
2658 ExpectedMemoryInfo mem1 = GetExpectedMemory(sizeof(pixels)); local
2822 ExpectedMemoryInfo mem1 = GetExpectedMemory(MaxTransferBufferSize()); local
2858 ExpectedMemoryInfo mem1 = GetExpectedMemory(MaxTransferBufferSize()); local
2905 ExpectedMemoryInfo mem1 = GetExpectedMemory(kUsableSize); local
    [all...]
  /external/clang/test/CodeGenCXX/
value-init.cpp 73 int mem1; member in struct:ptrmem::S
  /external/chromium_org/third_party/opus/src/celt/
pitch.c 113 opus_val32 mem0, mem1, mem2, mem3, mem4; local
120 mem1=mem[1];
128 sum = MAC16_16(sum,num1,mem1);
134 mem2 = mem1;
135 mem1 = mem0;
140 mem[1]=mem1;
celt_encoder.c 232 opus_val32 mem0,mem1; local
260 mem1=0;
268 mem0 = mem1 + y - SHL32(x,1);
269 mem1 = x - SHR32(y,1);
271 mem0 = mem1 + y - 2*x;
272 mem1 = x - .5f*y;
    [all...]
  /external/libopus/celt/
pitch.c 113 opus_val32 mem0, mem1, mem2, mem3, mem4; local
120 mem1=mem[1];
128 sum = MAC16_16(sum,num1,mem1);
134 mem2 = mem1;
135 mem1 = mem0;
140 mem[1]=mem1;
celt_encoder.c 232 opus_val32 mem0,mem1; local
260 mem1=0;
268 mem0 = mem1 + y - SHL32(x,1);
269 mem1 = x - SHR32(y,1);
271 mem0 = mem1 + y - 2*x;
272 mem1 = x - .5f*y;
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
vdbeaux.c 2922 Mem mem1; local
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 60047 Mem mem1; local
    [all...]

Completed in 1071 milliseconds

1 2