Searched defs:mem2 (Results 1 - 21 of 21) sorted by relevance

/external/clang/test/SemaTemplate/
H A Dcrash.cpp8 void S<T>::mem2() { function in class:S
/external/valgrind/none/tests/mips32/
H A DMemCpyTest.c31 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]);
H A DLoadStore.c17 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, 1
[all...]
H A DLoadStore1.c17 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, 1
[all...]
/external/libchrome/base/memory/
H A Dref_counted_memory_unittest.cc33 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/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
H A Ddestroy_at.pass.cpp49 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/valgrind/none/tests/mips64/
H A Dload_store_multiple.c17 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, 1
[all...]
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
H A Dinvoke_lvalue.pass.cpp41 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
H A Dinvoke_rvalue.pass.cpp41 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/
H A Dinvoke.pass.cpp39 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/
H A Dfloat128-declarations.cpp56 __float128 mem2; member in struct:S1
67 func1t(f1l) + s1.mem2 - f1n + f2n;
H A Dvalue-init.cpp74 int S::*mem2; member in class:ptrmem::S::S
82 return s->*S().mem2;
/external/libcxx/test/std/experimental/utilities/tuple/tuple.apply/
H A Dextended_types.pass.cpp36 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 local
298 mem2_t mem2 = &T::mem2; local
[all...]
/external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.inv/
H A Dinvoke.pass.cpp113 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/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
H A Dapply_extended_types.pass.cpp36 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 local
297 mem2_t mem2 = &T::mem2; local
[all...]
/external/syslinux/core/lwip/src/core/
H A Dmem.c370 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...]
/external/libopus/celt/
H A Dpitch.c113 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/protobuf/ruby/ext/google/protobuf_c/
H A Dstorage.c330 bool native_slot_eq(upb_fieldtype_t type, void* mem1, void* mem2) { argument
336 VALUE val2 = DEREF(mem2, VALUE);
341 return !memcmp(mem1, mem2, native_slot_size(type));
/external/speex/libspeex/
H A Dfilters.c411 VARDECL(spx_mem_t *mem2);
413 ALLOC(mem2, ord, spx_mem_t);
422 mem1[i] = mem2[i] = 0;
427 y[i] = PSHR32(ADD32(SHL32(EXTEND32(y1),LPC_SHIFT+1),mem2[0]),LPC_SHIFT);
432 mem2[j] = MAC16_16(mem2[j+1], ak[j],ny2i);
435 mem2[ord-1] = MULT16_16(ak[ord-1],ny2i);
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
499 xx2[N2+i] = mem2[2*i+1];
565 mem2[
[all...]
/external/webp/src/mux/
H A Danim_encode.c1447 WebPMemoryWriter mem1, mem2; local
1449 WebPMemoryWriterInit(&mem2);
1456 if (!EncodeFrame(&enc->last_config_reversed_, canvas_buf, &mem2)) goto Err;
1457 if (mem2.size < mem1.size) {
1458 GetEncodedData(&mem2, full_image);
1461 WebPMemoryWriterClear(&mem2);
1468 WebPMemoryWriterClear(&mem2);
/external/vulkan-validation-layers/tests/
H A Dlayer_validation_tests.cpp1791 VkDeviceMemory mem2; local
1834 err = vkAllocateMemory(m_device->device(), &mem_alloc, NULL, &mem2);
1843 err = vkBindImageMemory(m_device->device(), image, mem2, 0);
1849 vkFreeMemory(m_device->device(), mem2, NULL);

Completed in 624 milliseconds