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

1 2

  /external/clang/test/SemaTemplate/
crash.cpp 5 void S<T>::mem1();
  /external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
destroy_at.pass.cpp 48 void* mem1 = std::malloc(sizeof(Counted)); local
50 assert(mem1 && mem2);
52 Counted* ptr1 = ::new(mem1) Counted();
59 std::free(mem1);
63 void* mem1 = std::malloc(sizeof(DCounted)); local
65 assert(mem1 && mem2);
67 DCounted* ptr1 = ::new(mem1) DCounted();
75 std::free(mem1);
  /external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 35 int mem1() { return ++count; } function in struct:A_int_0
44 int mem1(int x) { return count += x; } function in struct:A_int_1
52 int mem1(int x, int y) { return count += (x + y); } function in struct:A_int_2
98 mem1_t mem1 = &T::mem1; local
110 assert(1 == ex::apply(mem1, t));
118 assert(1 == ex::apply(mem1, t));
126 assert(1 == ex::apply(mem1, t));
134 assert(1 == ex::apply(mem1, t));
210 mem1_t mem1 = &T::mem1 local
295 mem1_t mem1 = &T::mem1; local
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
apply_extended_types.pass.cpp 35 int mem1() { return ++count; } function in struct:A_int_0
44 int mem1(int x) { return count += x; } function in struct:A_int_1
52 int mem1(int x, int y) { return count += (x + y); } function in struct:A_int_2
97 mem1_t mem1 = &T::mem1; local
109 assert(1 == std::apply(mem1, t));
117 assert(1 == std::apply(mem1, t));
125 assert(1 == std::apply(mem1, t));
133 assert(1 == std::apply(mem1, t));
209 mem1_t mem1 = &T::mem1 local
294 mem1_t mem1 = &T::mem1; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 35 int mem1() { return ++count; } function in struct:A_int_0
44 int mem1(int x) { return count += x; } function in struct:A_int_1
52 int mem1(int x, int y) { return count += (x + y); } function in struct:A_int_2
98 mem1_t mem1 = &T::mem1; local
110 assert(1 == ex::apply(mem1, t));
118 assert(1 == ex::apply(mem1, t));
126 assert(1 == ex::apply(mem1, t));
134 assert(1 == ex::apply(mem1, t));
210 mem1_t mem1 = &T::mem1 local
295 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...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
schedule_test.go 17 Valu("mem1", OpStore, TypeMem, 8, nil, "ptr", "v", "mem0"),
18 Valu("mem2", OpStore, TypeMem, 8, nil, "ptr", "v", "mem1"),
20 Valu("l1", OpLoad, TypeInt64, 0, nil, "ptr", "mem1"),
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
schedule_test.go 17 Valu("mem1", OpStore, TypeMem, 8, nil, "ptr", "v", "mem0"),
18 Valu("mem2", OpStore, TypeMem, 8, nil, "ptr", "v", "mem1"),
20 Valu("l1", OpLoad, TypeInt64, 0, nil, "ptr", "mem1"),
  /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;
  /prebuilts/ndk/r11/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;
  /prebuilts/ndk/r11/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;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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;
  /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/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/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) \
76 printf("MEM1:\n");
169 ppMem(mem1, 16);
196 ppMem(mem1, 16);
223 ppMem(mem1, 16);
250 ppMem(mem1, 16);
277 ppMem(mem1, 16);
304 ppMem(mem1, 16);
331 ppMem(mem1, 16)
    [all...]
LoadStore1.c 10 unsigned int mem1[] = { variable
33 : "r" (mem1), "r" (RTval) \
76 printf("MEM1:\n");
169 ppMem(mem1, 16);
196 ppMem(mem1, 16);
223 ppMem(mem1, 16);
250 ppMem(mem1, 16);
277 ppMem(mem1, 16);
304 ppMem(mem1, 16);
331 ppMem(mem1, 16)
    [all...]
vfp.c 49 double mem1[] = { variable
161 : "r" (mem1), "r" (fs_d) \
183 : "r" (mem1), "r" (fs_d) \
205 : "r" (mem1), "r" (fs_d) \
265 printf("MEM1:\n");
279 printf("MEM1:\n");
430 ppMem(mem1, 16);
443 ppMem(mem1, 16);
530 ppMem(mem1, 16);
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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/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...]

Completed in 850 milliseconds

1 2