Home
last modified time | relevance | path

Searched refs:input_memory (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/crosvm/disk/src/
H A Dandroid_sparse.rs558 let mut input_memory = [55u8; 100]; in read_dontcare() localVariable
560 .read_exact_at_volatile(VolatileSlice::new(&mut input_memory[..]), 0) in read_dontcare()
563 assert_eq!(&expected[..], &input_memory[..]); in read_dontcare()
573 let mut input_memory = [55u8; 8]; in read_fill_simple() localVariable
575 .read_exact_at_volatile(VolatileSlice::new(&mut input_memory[..]), 0) in read_fill_simple()
578 assert_eq!(&expected[..], &input_memory[..]); in read_fill_simple()
588 let mut input_memory = [55u8; 6]; in read_fill_edges() localVariable
590 .read_exact_at_volatile(VolatileSlice::new(&mut input_memory[..]), 1) in read_fill_edges()
593 assert_eq!(&expected[..], &input_memory[..]); in read_fill_edges()
609 let mut input_memory = [55u8; 7]; in read_fill_offset_edges() localVariable
[all …]
H A Dcomposite.rs921 let mut input_memory = [55u8; 5]; in single_file_passthrough() localVariable
922 let input_volatile_memory = VolatileSlice::new(&mut input_memory[..]); in single_file_passthrough()
931 assert_eq!(input_memory, output_memory); in single_file_passthrough()
1024 let mut input_memory = [55u8; 200]; in triple_file_passthrough() localVariable
1025 let input_volatile_memory = VolatileSlice::new(&mut input_memory[..]); in triple_file_passthrough()
1034 assert!(input_memory.iter().eq(output_memory.iter())); in triple_file_passthrough()
/aosp_15_r20/frameworks/compile/libbcc/lib/
DSource.cpp108 std::unique_ptr<llvm::MemoryBuffer> input_memory = in CreateFromBuffer() local
111 if (input_memory == nullptr) { in CreateFromBuffer()
117 std::move(input_memory)); in CreateFromBuffer()
155 std::unique_ptr<llvm::MemoryBuffer> input_memory(input_data.release()); in CreateFromFile() local
157 std::move(input_memory)); in CreateFromFile()
/aosp_15_r20/external/XNNPACK/bench/
H A Df32-softmax.cc63 dnnl_memory_t input_memory = nullptr; in DNNLSoftArgMax() local
65 &input_memory, &memory_descriptor, engine, x.data()) != dnnl_success) in DNNLSoftArgMax()
106 {DNNL_ARG_SRC, input_memory}, in DNNLSoftArgMax()
152 if (dnnl_memory_destroy(input_memory) != dnnl_success) { in DNNLSoftArgMax()
/aosp_15_r20/external/libpng/contrib/libtests/
H A Dpngstest.c581 png_voidp input_memory; member
635 if (image->input_memory != NULL) in freeimage()
637 free(image->input_memory); in freeimage()
638 image->input_memory = NULL; in freeimage()
2959 if (image->input_memory != NULL) in read_file()
2961 if (!png_image_begin_read_from_memory(&image->image, image->input_memory, in read_file()
3089 image->input_memory = b; in read_one_file()
3254 output->input_memory = malloc(size); in write_one_file()
3256 if (output->input_memory != NULL) in write_one_file()
3260 if (png_image_write_to_memory(&image->image, output->input_memory, in write_one_file()
[all …]
/aosp_15_r20/external/minijail/tools/
H A Dbpf.py91 input_memory = struct.pack('IIQ' + 'Q' * MAX_SYSCALL_ARGUMENTS,
102 register = struct.unpack('I', input_memory[ins.k:ins.k + 4])[0]