Home
last modified time | relevance | path

Searched refs:take (Results 1 – 25 of 127) sorted by relevance

123456

/hardware/google/gfxstream/guest/mesa/src/util/blake3/
Dblake3.c36 size_t take = BLAKE3_BLOCK_LEN - ((size_t)self->buf_len); in chunk_state_fill_buf() local
37 if (take > input_len) { in chunk_state_fill_buf()
38 take = input_len; in chunk_state_fill_buf()
41 memcpy(dest, input, take); in chunk_state_fill_buf()
42 self->buf_len += (uint8_t)take; in chunk_state_fill_buf()
43 return take; in chunk_state_fill_buf()
115 size_t take = chunk_state_fill_buf(self, input, input_len); in chunk_state_update() local
116 input += take; in chunk_state_update()
117 input_len -= take; in chunk_state_update()
137 size_t take = chunk_state_fill_buf(self, input, input_len); in chunk_state_update() local
[all …]
/hardware/interfaces/neuralnetworks/utils/common/include/nnapi/hal/
DTransferValue.h52 [[nodiscard]] ReturnType take();
74 [[nodiscard]] Type take() const;
93 ReturnType CallbackValue<ReturnType, ArgTypes...>::take() { in take() function
112 Type TransferValue<Type>::take() const { in take() function
/hardware/interfaces/neuralnetworks/1.0/utils/src/
DCallbacks.cpp70 return mData.take(); in get()
85 return mData.take(); in get()
DDevice.cpp62 return cb.take(); in getCapabilitiesFrom()
140 return cb.take(); in getSupportedOperations()
/hardware/interfaces/neuralnetworks/1.2/utils/src/
DDevice.cpp98 return cb.take(); in getCapabilitiesFrom()
111 return cb.take(); in getVersionStringFrom()
122 return cb.take(); in getDeviceTypeFrom()
133 return cb.take(); in getSupportedExtensionsFrom()
145 return cb.take(); in getNumberOfCacheFilesNeededFrom()
233 return cb.take(); in getSupportedOperations()
DCallbacks.cpp98 return mData.take(); in get()
120 return mData.take(); in get()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_EXT_acquire_xlib_display.adoc24 This extension allows an application to take exclusive control on a display
36 1) Should flink:vkAcquireXlibDisplayEXT take an RandR display ID, or a
DVK_EXT_acquire_drm_display.adoc18 This extension allows an application to take exclusive control of a display
DVK_EXT_debug_marker.adoc145 The functions have been expanded to take an optional color which can be used
154 All functions have been modified to take a structure type with extensible
171 ** Changed functions to take extensible structs instead of direct function
DVK_EXT_legacy_dithering.adoc21 allowing the layer to take advantage of the same hardware feature and
DVK_EXT_direct_mode_display.adoc23 applications to take exclusive control of displays associated with a native
DVK_EXT_global_priority.adoc33 The global priority level of a queue shall take precedence over the
/hardware/interfaces/neuralnetworks/aidl/utils/src/
DCallbacks.cpp60 return mData.take(); in get()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/proposals/
DVK_KHR_map_memory2.adoc18 neither `vkMapMemory()` nor `vkUnmapMemory()` take an input struct with a
24 take input structs which are extensible via the usual `pNext` mechanism:
/hardware/interfaces/neuralnetworks/1.3/utils/src/
DCallbacks.cpp120 return mData.take(); in get()
149 return mData.take(); in get()
DDevice.cpp87 return cb.take(); in getCapabilitiesFrom()
184 return cb.take(); in getSupportedOperations()
252 return cb.take(); in allocate()
DPreparedModel.cpp80 return cb.take(); in fencedExecutionCallback()
116 return cb.take(); in executeSynchronously()
220 auto [syncFence, callback] = NN_TRY(cb.take()); in executeFencedInternal()
/hardware/interfaces/contexthub/1.0/
DIContexthub.hal70 * Loading a nanoapp must not take more than 30 seconds.
101 * Unloading a nanoapp must not take more than 5 seconds.
122 * Enabling a nanoapp must not take more than 5 seconds.
143 * Disabling a nanoapp must not take more than 5 seconds.
/hardware/interfaces/neuralnetworks/1.1/utils/src/
DDevice.cpp62 return cb.take(); in getCapabilitiesFrom()
140 return cb.take(); in getSupportedOperations()
/hardware/interfaces/graphics/composer/2.4/
Dtypes.hal44 * the change can take place.
/hardware/interfaces/vibrator/1.2/
DIVibrator.hal30 * @return lengthMs The length of time the event is expected to take in
/hardware/interfaces/vibrator/1.1/
DIVibrator.hal31 * @return lengthMs The length of time the event is expected to take in
/hardware/libhardware/modules/local_time/
DAndroid.bp17 // Devices which use the default implementation should take care to ensure that
/hardware/google/gfxstream/host/vulkan/
DAndroid.bp70 // http://b/255937616 - clang-tidy can take long with VkDecoder.cpp
/hardware/interfaces/nfc/1.1/
DINfc.hal45 * Open call to take the @1.1::INfcClientCallback

123456