Searched refs:mem1 (Results 1 - 25 of 27) sorted by relevance

12

/external/clang/test/SemaTemplate/
H A Dcrash.cpp5 void S<T>::mem1();
/external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
H A Ddestroy_at.pass.cpp48 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/
H A Dextended_types.pass.cpp35 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 local
295 mem1_t mem1 = &T::mem1; local
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dapply_extended_types.pass.cpp35 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 local
294 mem1_t mem1 = &T::mem1; local
[all...]
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dinvoke_lvalue.pass.cpp40 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, _
[all...]
H A Dinvoke_rvalue.pass.cpp40 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, _
[all...]
/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.invoke/
H A Dinvoke.pass.cpp38 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/
H A Dref_counted_memory_unittest.cc57 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/
H A Dinvoke.pass.cpp112 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/
H A DMemCpyTest.c3 unsigned int mem1[] = { variable
40 "move $s0, %1\n\t" // s0 addr mem1
52 : "r" (mem1), "r" (mem2)
H A DLoadStore.c10 unsigned int mem1[] = { variable
33 : "r" (mem1), "r" (RTval) \
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);
H A DLoadStore1.c10 unsigned int mem1[] = { variable
33 : "r" (mem1), "r" (RTval) \
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);
H A Dvfp.c49 double mem1[] = { variable
161 : "r" (mem1), "r" (fs_d) \
183 : "r" (mem1), "r" (fs_d) \
205 : "r" (mem1), "r" (fs_d) \
430 ppMem(mem1, 16);
443 ppMem(mem1, 16);
530 ppMem(mem1, 16);
/external/valgrind/none/tests/mips64/
H A Dload_store_multiple.c10 unsigned int mem1[] = { variable
32 : "r" (mem1), "r" (RTval) \
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);
/external/clang/test/CodeGenCXX/
H A Dfloat128-declarations.cpp53 C mem1; member in struct:S1
H A Dvalue-init.cpp73 int mem1; member in struct:ptrmem::S
/external/libopus/celt/
H A Dpitch.c113 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;
H A Dcelt_encoder.c230 opus_val32 mem0,mem1; local
258 mem1=0;
266 mem0 = mem1 + y - SHL32(x,1);
267 mem1 = x - SHR32(y,1);
269 mem0 = mem1 + y - 2*x;
270 mem1 = x - .5f*y;
/external/clang/test/SemaCXX/
H A Ddefault2.cpp58 int mem1(int i = a); // expected-error{{invalid use of non-static data member 'a'}}
/external/speex/libspeex/
H A Dfilters.h62 void qmf_synth(const spx_word16_t *x1, const spx_word16_t *x2, const spx_word16_t *a, spx_word16_t *y, int N, int M, spx_word16_t *mem1, spx_word16_t *mem2, char *stack);
H A Dfilters.c410 VARDECL(spx_mem_t *mem1);
412 ALLOC(mem1, ord, spx_mem_t);
422 mem1[i] = mem2[i] = 0;
425 y1 = ADD16(y[i], EXTRACT16(PSHR32(mem1[0],LPC_SHIFT)));
431 mem1[j] = MAC16_16(mem1[j+1], awk2[j],ny1i);
434 mem1[ord-1] = MULT16_16(awk2[ord-1],ny1i);
477 void qmf_synth(const spx_word16_t *x1, const spx_word16_t *x2, const spx_word16_t *a, spx_word16_t *y, int N, int M, spx_word16_t *mem1, spx_word16_t *mem2, char *stack) argument
495 xx1[N2+i] = mem1[2*i+1];
563 mem1[
[all...]
/external/webp/src/mux/
H A Danim_encode.c1447 WebPMemoryWriter mem1, mem2; local
1448 WebPMemoryWriterInit(&mem1);
1452 if (!EncodeFrame(&enc->last_config_, canvas_buf, &mem1)) goto Err;
1453 GetEncodedData(&mem1, full_image);
1457 if (mem2.size < mem1.size) {
1459 WebPMemoryWriterClear(&mem1);
1467 WebPMemoryWriterClear(&mem1);
/external/protobuf/ruby/ext/google/protobuf_c/
H A Dstorage.c330 bool native_slot_eq(upb_fieldtype_t type, void* mem1, void* mem2) { argument
335 VALUE val1 = DEREF(mem1, VALUE);
341 return !memcmp(mem1, mem2, native_slot_size(type));
H A Dprotobuf.h314 bool native_slot_eq(upb_fieldtype_t type, void* mem1, void* mem2);
/external/vulkan-validation-layers/tests/
H A Dlayer_validation_tests.cpp1790 VkDeviceMemory mem1; local
1832 err = vkAllocateMemory(m_device->device(), &mem_alloc, NULL, &mem1);
1838 err = vkBindImageMemory(m_device->device(), image, mem1, 0);
1848 vkFreeMemory(m_device->device(), mem1, NULL);

Completed in 881 milliseconds

12