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

  /external/valgrind/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/libchrome/base/memory/
ref_counted_memory_unittest.cc 57 scoped_refptr<RefCountedMemory> mem1 = RefCountedString::TakeString(&s1); local
66 EXPECT_TRUE(mem1->Equals(mem2));
71 EXPECT_FALSE(mem1->Equals(mem3));
  /external/valgrind/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/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 31 int mem1() { return ++count; } function in struct:A_int_0
40 int mem1(int x) { return count += x; } function in struct:A_int_1
48 int mem1(int x, int y) { return count += (x + y); } function in struct:A_int_2
94 mem1_t mem1 = &T::mem1; local
106 assert(1 == ex::apply(mem1, t));
114 assert(1 == ex::apply(mem1, t));
122 assert(1 == ex::apply(mem1, t));
130 assert(1 == ex::apply(mem1, t));
206 mem1_t mem1 = &T::mem1 local
291 mem1_t mem1 = &T::mem1; local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 40 void mem1() {++count;} function in struct:A_void_1
94 void (A_void_1::*fp)() = &A_void_1::mem1;
105 void (A_void_1::*fp)() = &A_void_1::mem1;
155 int mem1() {return 3;} function in struct:A_int_1
186 assert(std::bind(&A_int_1::mem1, _1)(a) == 3);
187 assert(std::bind(&A_int_1::mem1, a)() == 3);
189 assert(std::bind(&A_int_1::mem1, _1)(ap) == 3);
190 assert(std::bind(&A_int_1::mem1, ap)() == 3);
230 void mem1(int i) {count += i;} function in struct:A_void_2
256 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), j)
    [all...]
invoke_rvalue.pass.cpp 40 void mem1() {++count;} function in struct:A_void_1
88 void (A_void_1::*fp)() = &A_void_1::mem1;
98 void (A_void_1::*fp)() = &A_void_1::mem1;
145 int mem1() {return 3;} function in struct:A_int_1
172 assert(std::bind(&A_int_1::mem1, _1)(A_int_1()) == 3);
173 assert(std::bind(&A_int_1::mem1, A_int_1())() == 3);
175 assert(std::bind(&A_int_1::mem1, _1)(&a) == 3);
176 assert(std::bind(&A_int_1::mem1, &a)() == 3);
214 void mem1(int i) {count += i;} function in struct:A_void_2
237 std::bind(&A_void_2::mem1, _1, _2)(A_void_2(), 3)
    [all...]
  /external/libcxx/test/std/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/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 112 void mem1() {++count;} function in struct:A_void_1
148 void (A_void_1::*fp)() = &A_void_1::mem1;
191 int mem1() {return 3;} function in struct:A_int_1
221 int (A_int_1::*fp)() = &A_int_1::mem1;
269 void mem1(int i) {count += i;} function in struct:A_void_2
308 void (A_void_2::*fp)(int) = &A_void_2::mem1;
352 int mem1(int i) {return i+1;} function in struct:A_int_2
383 int(A_int_2::*fp)(int) = &A_int_2::mem1;
  /external/clang/test/CodeGenCXX/
value-init.cpp 73 int mem1; member in struct:ptrmem::S
  /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/vulkan-validation-layers/tests/
layer_validation_tests.cpp 747 VkDeviceMemory mem1; local
790 err = vkAllocateMemory(m_device->device(), &mem_alloc, NULL, &mem1);
796 err = vkBindImageMemory(m_device->device(), image, mem1, 0);
809 vkFreeMemory(m_device->device(), mem1, NULL);
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 70027 Mem mem1; local
70357 Mem mem1; local
    [all...]
  /external/sqlite/dist/
sqlite3.c 70045 Mem mem1; local
70375 Mem mem1; local
    [all...]

Completed in 607 milliseconds