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

1 2

  /external/clang/test/SemaTemplate/
crash.cpp 8 void S<T>::mem2() { function in class:S
  /external/valgrind/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) \
336 ppMem0(mem2, 12);
338 ppMem0(mem2, 12);
340 ppMem0(mem2, 12);
342 ppMem0(mem2, 12);
344 ppMem0(mem2, 12);
346 ppMem0(mem2, 12);
348 ppMem0(mem2, 12);
350 ppMem0(mem2, 12)
    [all...]
LoadStore1.c 17 unsigned int mem2[] = { variable
65 : "r" (mem2), "r" (RTval) \
336 ppMem0(mem2, 12);
338 ppMem0(mem2, 12);
340 ppMem0(mem2, 12);
342 ppMem0(mem2, 12);
344 ppMem0(mem2, 12);
346 ppMem0(mem2, 12);
348 ppMem0(mem2, 12);
350 ppMem0(mem2, 12)
    [all...]
  /external/libchrome/base/memory/
ref_counted_memory_unittest.cc 33 scoped_refptr<RefCountedMemory> mem2; local
36 mem2 = new RefCountedBytes(data2, 3);
38 EXPECT_EQ(3U, mem2->size());
39 EXPECT_EQ(12U, mem2->front()[0]);
40 EXPECT_EQ(11U, mem2->front()[1]);
41 EXPECT_EQ(99U, mem2->front()[2]);
64 scoped_refptr<RefCountedMemory> mem2 = RefCountedBytes::TakeVector(&d2); local
66 EXPECT_TRUE(mem1->Equals(mem2));
72 EXPECT_FALSE(mem2->Equals(mem3));
  /external/valgrind/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/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
destroy_at.pass.cpp 49 void* mem2 = std::malloc(sizeof(Counted)); local
50 assert(mem1 && mem2);
53 Counted* ptr2 = ::new(mem2) Counted();
60 std::free(mem2);
64 void* mem2 = std::malloc(sizeof(DCounted)); local
65 assert(mem1 && mem2);
68 DCounted* ptr2 = ::new(mem2) DCounted();
76 std::free(mem2);
  /external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 36 int mem2() const { return ++count; } function in struct:A_int_0
45 int mem2(int x) const { return count += x; } function in struct:A_int_1
53 int mem2(int x, int y) const { return count += (x + y); } function in struct:A_int_2
101 mem2_t mem2 = &T::mem2; local
142 assert(1 == ex::apply(mem2, t));
150 assert(1 == ex::apply(mem2, t));
158 assert(1 == ex::apply(mem2, t));
166 assert(1 == ex::apply(mem2, t));
213 mem2_t mem2 = &T::mem2 local
298 mem2_t mem2 = &T::mem2; local
    [all...]
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 41 void mem2() const {count += 2;} function in struct:A_void_1
117 void (A_void_1::*fp)() const = &A_void_1::mem2;
128 void (A_void_1::*fp)() const = &A_void_1::mem2;
156 int mem2() const {return 4;} function in struct:A_int_1
195 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
196 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
198 assert(std::bind(&A_int_1::mem2, _1)(ap) == 4);
199 assert(std::bind(&A_int_1::mem2, ap)() == 4);
231 void mem2(int i) const {count += i;} function in struct:A_void_2
invoke_rvalue.pass.cpp 41 void mem2() const {count += 2;} function in struct:A_void_1
109 void (A_void_1::*fp)() const = &A_void_1::mem2;
119 void (A_void_1::*fp)() const = &A_void_1::mem2;
146 int mem2() const {return 4;} function in struct:A_int_1
180 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
181 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
183 assert(std::bind(&A_int_1::mem2, _1)(&a) == 4);
184 assert(std::bind(&A_int_1::mem2, &a)() == 4);
215 void mem2(int i) const {count += i;} function in struct:A_void_2
  /external/libcxx/test/std/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/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
apply_extended_types.pass.cpp 36 int mem2() const { return ++count; } function in struct:A_int_0
45 int mem2(int x) const { return count += x; } function in struct:A_int_1
53 int mem2(int x, int y) const { return count += (x + y); } function in struct:A_int_2
100 mem2_t mem2 = &T::mem2; local
141 assert(1 == std::apply(mem2, t));
149 assert(1 == std::apply(mem2, t));
157 assert(1 == std::apply(mem2, t));
165 assert(1 == std::apply(mem2, t));
212 mem2_t mem2 = &T::mem2 local
297 mem2_t mem2 = &T::mem2; local
    [all...]
  /prebuilts/ndk/r11/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
  /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 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;
  /prebuilts/ndk/r11/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;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 36 int mem2() const { return ++count; } function in struct:A_int_0
45 int mem2(int x) const { return count += x; } function in struct:A_int_1
53 int mem2(int x, int y) const { return count += (x + y); } function in struct:A_int_2
101 mem2_t mem2 = &T::mem2; local
142 assert(1 == ex::apply(mem2, t));
150 assert(1 == ex::apply(mem2, t));
158 assert(1 == ex::apply(mem2, t));
166 assert(1 == ex::apply(mem2, t));
213 mem2_t mem2 = &T::mem2 local
298 mem2_t mem2 = &T::mem2; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
invoke_lvalue.pass.cpp 41 void mem2() const {count += 2;} function in struct:A_void_1
117 void (A_void_1::*fp)() const = &A_void_1::mem2;
128 void (A_void_1::*fp)() const = &A_void_1::mem2;
156 int mem2() const {return 4;} function in struct:A_int_1
195 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
196 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
198 assert(std::bind(&A_int_1::mem2, _1)(ap) == 4);
199 assert(std::bind(&A_int_1::mem2, ap)() == 4);
231 void mem2(int i) const {count += i;} function in struct:A_void_2
invoke_rvalue.pass.cpp 41 void mem2() const {count += 2;} function in struct:A_void_1
109 void (A_void_1::*fp)() const = &A_void_1::mem2;
119 void (A_void_1::*fp)() const = &A_void_1::mem2;
146 int mem2() const {return 4;} function in struct:A_int_1
180 assert(std::bind(&A_int_1::mem2, _1)(A_int_1()) == 4);
181 assert(std::bind(&A_int_1::mem2, A_int_1())() == 4);
183 assert(std::bind(&A_int_1::mem2, _1)(&a) == 4);
184 assert(std::bind(&A_int_1::mem2, &a)() == 4);
215 void mem2(int i) const {count += i;} function in struct:A_void_2
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/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/clang/test/CodeGenCXX/
float128-declarations.cpp 56 __float128 mem2; member in struct:S1
67 func1t(f1l) + s1.mem2 - f1n + f2n;
value-init.cpp 74 int S::*mem2; member in class:ptrmem::S::S
82 return s->*S().mem2;
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
invoke.pass.cpp 113 void mem2() const {++count;} function in struct:A_void_1
162 void (A_void_1::*fp)() const = &A_void_1::mem2;
192 int mem2() const {return 4;} function in struct:A_int_1
231 int (A_int_1::*fp)() const = &A_int_1::mem2;
270 void mem2(int i) const {count += i;} function in struct:A_void_2
323 void (A_void_2::*fp)(int) const = &A_void_2::mem2;
353 int mem2(int i) const {return i+2;} function in struct:A_int_2
394 int (A_int_2::*fp)(int) const = &A_int_2::mem2;
  /external/syslinux/core/lwip/src/core/
mem.c 370 struct mem *mem, *mem2; local
418 mem2 = (struct mem *)(void *)&ram[mem->next];
419 if(mem2->used == 0) {
423 next = mem2->next;
426 if (lfree == mem2) {
429 mem2 = (struct mem *)(void *)&ram[ptr2];
430 mem2->used = 0;
432 mem2->next = next;
434 mem2->prev = ptr;
437 /* last thing to restore linked list: as we have moved mem2,
494 struct mem *mem, *mem2; local
    [all...]
  /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 113 void mem2() const {++count;} function in struct:A_void_1
162 void (A_void_1::*fp)() const = &A_void_1::mem2;
192 int mem2() const {return 4;} function in struct:A_int_1
231 int (A_int_1::*fp)() const = &A_int_1::mem2;
270 void mem2(int i) const {count += i;} function in struct:A_void_2
323 void (A_void_2::*fp)(int) const = &A_void_2::mem2;
353 int mem2(int i) const {return i+2;} function in struct:A_int_2
394 int (A_int_2::*fp)(int) const = &A_int_2::mem2;

Completed in 551 milliseconds

1 2