Home
last modified time | relevance | path

Searched refs:mem1 (Results 1 – 11 of 11) sorted by relevance

/aosp12/hardware/interfaces/tests/memory/2.0/
H A Dtypes.hal4 memory mem1;
/aosp12/bionic/libc/bionic/
H A Dfts.c107 goto mem1; in __fts_open()
178 mem1: free(sp); in __fts_open()
661 goto mem1; in fts_build()
670 mem1: saved_errno = errno; in fts_build()
/aosp12/system/tools/hidl/test/java_test/
H A Dhidl_test_java_native.cpp129 if (in.mem1.size() != in.mem2.size()) { in getSumDiff()
133 const size_t size = in.mem1.size(); in getSumDiff()
136 sp<IMemory> memory_in1 = mapMemory(in.mem1); in getSumDiff()
163 out.mem1 = m; in getSumDiff()
165 sp<IMemory> memory_out1 = mapMemory(out.mem1); in getSumDiff()
/aosp12/art/compiler/optimizing/
H A Dcode_generator_x86_64.h171 void ExchangeMemory32(int mem1, int mem2);
172 void ExchangeMemory64(int mem1, int mem2, int num_of_qwords);
H A Dcode_generator_x86.h167 void ExchangeMemory(int mem1, int mem2, int number_of_words);
H A Dcode_generator_arm_vixl.h279 void Exchange(int mem1, int mem2);
H A Dcode_generator_x86_64.cc6090 void ParallelMoveResolverX86_64::ExchangeMemory32(int mem1, int mem2) { in ExchangeMemory32() argument
6095 __ movl(CpuRegister(TMP), Address(CpuRegister(RSP), mem1 + stack_offset)); in ExchangeMemory32()
6099 __ movl(Address(CpuRegister(RSP), mem1 + stack_offset), in ExchangeMemory32()
6103 void ParallelMoveResolverX86_64::ExchangeMemory64(int mem1, int mem2, int num_of_qwords) { in ExchangeMemory64() argument
6112 Address(CpuRegister(RSP), mem1 + stack_offset)); in ExchangeMemory64()
6117 __ movq(Address(CpuRegister(RSP), mem1 + stack_offset), in ExchangeMemory64()
H A Dcode_generator_arm_vixl.cc7274 void ParallelMoveResolverARMVIXL::Exchange(int mem1, int mem2) { in Exchange() argument
7283 GetAssembler()->LoadFromOffset(kLoadWord, temp1, sp, mem1 + stack_offset); in Exchange()
7286 GetAssembler()->StoreToOffset(kStoreWord, temp2, sp, mem1 + stack_offset); in Exchange()
H A Dcode_generator_x86.cc6979 void ParallelMoveResolverX86::ExchangeMemory(int mem1, int mem2, int number_of_words) { in ExchangeMemory() argument
6992 … __ movl(static_cast<Register>(ensure_scratch1.GetRegister()), Address(ESP, mem1 + stack_offset)); in ExchangeMemory()
6995 … __ movl(Address(ESP, mem1 + stack_offset), static_cast<Register>(ensure_scratch2.GetRegister())); in ExchangeMemory()
/aosp12/system/libhidl/
H A Dtest_main.cpp195 hidl_memory mem1 = hidl_memory(); // default constructor in TEST_F() local
196 hidl_memory mem2 = mem1; // copy constructor (nullptr), NOLINT in TEST_F()
/aosp12/system/tools/hidl/test/java_test/src/com/android/commands/hidl_test_java/
H A DHidlTestJava.java273 in.mem1 = HidlMemoryUtil.byteArrayToHidlMemory(new byte[]{10, 11, 12, 13}); in runClientMemoryTests()
276 ExpectTrue(Arrays.equals(HidlMemoryUtil.hidlMemoryToByteArray(out.mem1), in runClientMemoryTests()
280 in.mem1.close(); in runClientMemoryTests()
282 out.mem1.close(); in runClientMemoryTests()