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

  /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) \
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/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/experimental/utilities/tuple/tuple.apply/
extended_types.pass.cpp 32 int mem2() const { return ++count; } function in struct:A_int_0
41 int mem2(int x) const { return count += x; } function in struct:A_int_1
49 int mem2(int x, int y) const { return count += (x + y); } function in struct:A_int_2
97 mem2_t mem2 = &T::mem2; local
138 assert(1 == ex::apply(mem2, t));
146 assert(1 == ex::apply(mem2, t));
154 assert(1 == ex::apply(mem2, t));
162 assert(1 == ex::apply(mem2, t));
209 mem2_t mem2 = &T::mem2 local
294 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;
  /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/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/clang/test/CodeGenCXX/
value-init.cpp 74 int S::*mem2; member in class:ptrmem::S::S
82 return s->*S().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;
  /external/vulkan-validation-layers/tests/
layer_validation_tests.cpp 748 VkDeviceMemory mem2; local
792 err = vkAllocateMemory(m_device->device(), &mem_alloc, NULL, &mem2);
801 err = vkBindImageMemory(m_device->device(), image, mem2, 0);
810 vkFreeMemory(m_device->device(), mem2, NULL);
    [all...]

Completed in 264 milliseconds