Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 507) sorted by relevance

12345678910>>...21

/device/generic/vulkan-cereal/stream-servers/vulkan/cereal/common/
Dgoldfish_vk_deepcopy.h45 void deepcopy_VkExtent2D(Allocator* alloc, VkStructureType rootType, const VkExtent2D* from,
48 void deepcopy_VkExtent3D(Allocator* alloc, VkStructureType rootType, const VkExtent3D* from,
51 void deepcopy_VkOffset2D(Allocator* alloc, VkStructureType rootType, const VkOffset2D* from,
54 void deepcopy_VkOffset3D(Allocator* alloc, VkStructureType rootType, const VkOffset3D* from,
57 void deepcopy_VkRect2D(Allocator* alloc, VkStructureType rootType, const VkRect2D* from,
61 const VkBaseInStructure* from, VkBaseInStructure* to);
64 const VkBaseOutStructure* from, VkBaseOutStructure* to);
67 const VkBufferMemoryBarrier* from, VkBufferMemoryBarrier* to);
70 const VkDispatchIndirectCommand* from,
74 const VkDrawIndexedIndirectCommand* from,
[all …]
Dgoldfish_vk_deepcopy.cpp47 void deepcopy_VkExtent2D(Allocator* alloc, VkStructureType rootType, const VkExtent2D* from, in deepcopy_VkExtent2D() argument
51 *to = *from; in deepcopy_VkExtent2D()
54 void deepcopy_VkExtent3D(Allocator* alloc, VkStructureType rootType, const VkExtent3D* from, in deepcopy_VkExtent3D() argument
58 *to = *from; in deepcopy_VkExtent3D()
61 void deepcopy_VkOffset2D(Allocator* alloc, VkStructureType rootType, const VkOffset2D* from, in deepcopy_VkOffset2D() argument
65 *to = *from; in deepcopy_VkOffset2D()
68 void deepcopy_VkOffset3D(Allocator* alloc, VkStructureType rootType, const VkOffset3D* from, in deepcopy_VkOffset3D() argument
72 *to = *from; in deepcopy_VkOffset3D()
75 void deepcopy_VkRect2D(Allocator* alloc, VkStructureType rootType, const VkRect2D* from, in deepcopy_VkRect2D() argument
79 *to = *from; in deepcopy_VkRect2D()
[all …]
/device/generic/goldfish-opengl/system/vulkan_enc/
Dgoldfish_vk_deepcopy_guest.h51 void deepcopy_VkExtent2D(Allocator* alloc, VkStructureType rootType, const VkExtent2D* from,
54 void deepcopy_VkExtent3D(Allocator* alloc, VkStructureType rootType, const VkExtent3D* from,
57 void deepcopy_VkOffset2D(Allocator* alloc, VkStructureType rootType, const VkOffset2D* from,
60 void deepcopy_VkOffset3D(Allocator* alloc, VkStructureType rootType, const VkOffset3D* from,
63 void deepcopy_VkRect2D(Allocator* alloc, VkStructureType rootType, const VkRect2D* from,
67 const VkBaseInStructure* from, VkBaseInStructure* to);
70 const VkBaseOutStructure* from, VkBaseOutStructure* to);
73 const VkBufferMemoryBarrier* from, VkBufferMemoryBarrier* to);
76 const VkDispatchIndirectCommand* from,
80 const VkDrawIndexedIndirectCommand* from,
[all …]
Dgoldfish_vk_deepcopy_guest.cpp47 void deepcopy_VkExtent2D(Allocator* alloc, VkStructureType rootType, const VkExtent2D* from, in deepcopy_VkExtent2D() argument
51 *to = *from; in deepcopy_VkExtent2D()
54 void deepcopy_VkExtent3D(Allocator* alloc, VkStructureType rootType, const VkExtent3D* from, in deepcopy_VkExtent3D() argument
58 *to = *from; in deepcopy_VkExtent3D()
61 void deepcopy_VkOffset2D(Allocator* alloc, VkStructureType rootType, const VkOffset2D* from, in deepcopy_VkOffset2D() argument
65 *to = *from; in deepcopy_VkOffset2D()
68 void deepcopy_VkOffset3D(Allocator* alloc, VkStructureType rootType, const VkOffset3D* from, in deepcopy_VkOffset3D() argument
72 *to = *from; in deepcopy_VkOffset3D()
75 void deepcopy_VkRect2D(Allocator* alloc, VkStructureType rootType, const VkRect2D* from, in deepcopy_VkRect2D() argument
79 *to = *from; in deepcopy_VkRect2D()
[all …]
/device/google/cuttlefish/guest/hals/camera/
Dcached_stream_buffer.cpp54 CachedStreamBuffer::CachedStreamBuffer(CachedStreamBuffer&& from) noexcept { in CachedStreamBuffer() argument
55 buffer_ = from.buffer_; in CachedStreamBuffer()
56 buffer_id_ = from.buffer_id_; in CachedStreamBuffer()
57 stream_id_ = from.stream_id_; in CachedStreamBuffer()
58 acquire_fence_ = from.acquire_fence_; in CachedStreamBuffer()
59 from.acquire_fence_ = -1; in CachedStreamBuffer()
60 from.buffer_ = nullptr; in CachedStreamBuffer()
64 CachedStreamBuffer&& from) noexcept { in operator =() argument
65 if (this != &from) { in operator =()
66 buffer_ = from.buffer_; in operator =()
[all …]
/device/linaro/dragonboard/qcom/qrtr/src/
Dns.c335 static int ctrl_cmd_bye(struct context *ctx, struct sockaddr_qrtr *from) in ctrl_cmd_bye() argument
345 node = node_get(from->sq_node); in ctrl_cmd_bye()
362 pkt.client.node = from->sq_node; in ctrl_cmd_bye()
380 static int ctrl_cmd_del_client(struct context *ctx, struct sockaddr_qrtr *from, in ctrl_cmd_del_client() argument
395 if (from->sq_node != node_id) in ctrl_cmd_del_client()
399 if (from->sq_node == ctx->local_node && from->sq_port != port) in ctrl_cmd_del_client()
444 static int ctrl_cmd_new_server(struct context *ctx, struct sockaddr_qrtr *from, in ctrl_cmd_new_server() argument
454 if (from->sq_node == ctx->local_node) { in ctrl_cmd_new_server()
455 node_id = from->sq_node; in ctrl_cmd_new_server()
456 port = from->sq_port; in ctrl_cmd_new_server()
[all …]
/device/generic/vulkan-cereal/stream-servers/gl/glestranslator/EGL/
DEglOsApi_darwin.cpp57 static MacSurface* from(EglOS::Surface* s) { in from() function in __anonc68725700111::MacSurface
79 static void* from(EglOS::Context* c) { in from() function in __anonc68725700111::MacContext
124 static const MacPixelFormat* from(const EglOS::PixelFormat* f) { in from() function in __anonc68725700111::MacPixelFormat
229 return isValidNativeWin(MacSurface::from(win)->handle()); in isValidNativeWin()
246 const MacPixelFormat* format = MacPixelFormat::from(pixelFormat); in checkWindowPixelFormatMatch()
262 sharedContext ? MacContext::from(sharedContext) : NULL; in createContext()
268 MacPixelFormat::from(pixelFormat)->handle()); in createContext()
276 MacPixelFormat::from(pixelFormat)->handle()); in createContext()
314 nsDestroyPBuffer(MacSurface::from(pb)->handle()); in releasePbuffer()
339 nsWindowMakeCurrent(MacContext::from(ctx), in makeCurrent()
[all …]
DEglOsApi_wgl.cpp514 static const WinPixelFormat* from(const EglOS::PixelFormat* f) { in from() function in __anond828e2f50111::WinPixelFormat
585 static WinSurface* from(EglOS::Surface* s) { in from() function in __anond828e2f50111::WinSurface
616 static HGLRC from(const EglOS::Context* c) { in from() function in __anond828e2f50111::WinContext
928 globals->setNontrivialDC(WinPixelFormat::from(info.frmt)); in pixelFormatToConfig()
994 return isValidNativeWin(WinSurface::from(win)->getHwnd()); in isValidNativeWin()
1014 const WinPixelFormat* format = WinPixelFormat::from(pixelFormat); in checkWindowPixelFormatMatch()
1029 const WinPixelFormat* format = WinPixelFormat::from(pixelFormat); in createContext()
1042 dpy, WinContext::from(sharedContext), in createContext()
1047 if (!mDispatch->wglShareLists(WinContext::from(sharedContext), ctx)) { in createContext()
1089 WinSurface* winSurface = WinSurface::from(surf); in createPbufferSurface()
[all …]
/device/google/cuttlefish/host/commands/metrics/proto/
Dcf_metrics_event.proto49 // Defines the OS that this log was sourced from.
53 // The log event was sourced from an unspecified os type.
56 // The log event was sourced from Linux x86 os type.
59 // The log event was sourced from Linux x86_64 os type.
62 // The log event was sourced from Linux aarch32 os type.
65 // The log event was sourced from Linux aarch64 os type.
69 // Defines the VMM that this log was sourced from.
73 // The log event was sourced from an unspecified vmm type.
76 // The log event was sourced from a CrOS VM vmm type.
79 // The log event was sourced from a QEMU vmm type.
[all …]
Dcf_log.proto26 // Defines the device class that this log was sourced from.
30 // The log event was sourced from an unspecified device type.
33 // A log event that was sourced from a Cuttlefish host device.
43 // The type of device this log event originated from.
/device/generic/vulkan-cereal/third-party/glm/include/glm/gtc/
Dtype_ptr.inl294 /// Build a vector from a pointer.
304 /// Build a vector from a pointer.
314 /// Build a vector from a pointer.
324 /// Build a matrix from a pointer.
334 /// Build a matrix from a pointer.
344 /// Build a matrix from a pointer.
354 /// Build a matrix from a pointer.
364 //! Build a matrix from a pointer.
374 //! Build a matrix from a pointer.
384 //! Build a matrix from a pointer.
[all …]
/device/google/cuttlefish/host/libs/config/
Desp.cpp122 EspBuilder& File(std::string from, std::string to, bool required) & { in File() argument
123 files_.push_back(FileToAdd {std::move(from), std::move(to), required}); in File()
127 EspBuilder& File(std::string from, std::string to) & { in File() argument
128 return File(std::move(from), std::move(to), false); in File()
165 if (!FileExists(file.from)) { in Build()
167 LOG(ERROR) << "Failed to copy " << file.from << " to " << tmp_esp_image in Build()
174 if (!CopyToMsdos(tmp_esp_image, file.from, "::" + file.to)) { in Build()
175 LOG(ERROR) << "Failed to copy " << file.from << " to " << tmp_esp_image in Build()
194 std::string from; member
/device/google/contexthub/firmware/build/
Dconfig.mk64 define nano-gen-linker-script-from-list-body
74 define nano-gen-linker-script-from-list
76 $(call nano-gen-linker-script-from-list-body,$(1),$(2))
87 $(eval $(call nano-gen-linker-script-from-list,$(1),$(patsubst %,$(NANOHUB_OS_PATH)/os/platform/$(5…
100 $(eval $(call nano-gen-linker-script-from-list,$(1),$(NANOHUB_OS_PATH)/os/platform/$(5)/lkr/$(4).ex…
111 $(eval $(call nano-gen-linker-script-from-list,$(1),$(3) $(patsubst %,$(NANOHUB_OS_PATH)/os/platfor…
/device/generic/goldfish-opengl/shared/gralloc_cb/include/
Dgralloc_cb_bp.h61 static cb_handle_t* from(void* p) { in from() function
67 static const cb_handle_t* from(const void* p) { in from() function
68 return from(const_cast<void*>(p)); in from()
72 return from(const_cast<void*>(p)); in from_unconst()
/device/generic/goldfish-opengl/system/hals/
Dmapper3.cpp93 constexpr uint64_t ones(int from, int to) { in ones() argument
94 return ((one64 << (to - from + 1)) - 1) << from; in ones()
129 cb_handle_30_t* cb = cb_handle_30_t::from(raw); in freeBuffer()
202 const cb_handle_30_t* cb = cb_handle_30_t::from(buffer); in validateBufferSize()
212 const cb_handle_30_t* cb = cb_handle_30_t::from(buffer); in getTransportSize()
231 cb_handle_30_t* cb = cb_handle_30_t::from(imported); in importBufferImpl()
285 cb_handle_30_t* cb = cb_handle_30_t::from(raw); in lockImpl()
331 cb_handle_30_t* cb = cb_handle_30_t::from(raw); in lockYCbCrImpl()
511 cb_handle_30_t* cb = cb_handle_30_t::from(raw); in unlockImpl()
Dcb_handle_30.h90 static cb_handle_30_t* from(void* p) { in from() function
96 static const cb_handle_30_t* from(const void* p) { in from() function
97 return from(const_cast<void*>(p)); in from()
101 return from(const_cast<void*>(p)); in from_unconst()
/device/linaro/dragonboard/installer/rb5/
DREADME2 and AOSP images(built from sources) on rb5.
11 like "adb reboot bootloader" from the host, or
31 binaries and AOSP images by running the following script from
61 instructions from here:
64 Then run the recovery script from the
/device/google/cuttlefish/common/libs/utils/
Dsocket2socket_proxy.cpp34 void Forward(const std::string& label, SharedFD from, SharedFD to) { in Forward() argument
36 auto success = to->CopyAllFrom(*from); in Forward()
38 if (from->GetErrno()) { in Forward()
39 LOG(ERROR) << label << ": Error reading: " << from->StrError(); in Forward()
/device/generic/opengl-transport/host/commands/emugen/
DREADME52 Since ‘foo’ returns value, the caller is expected to read back the return packet from the server->c…
63 in : Data is sent from the caller to the calle
64 out: Data is sent from the callee to the caller
65 in_out: data is sent from the caller and return in place.
113 from c/c++ header files or similar.
177 context from a Thread Local Storage (TLS) location.
190 encoder data structure inherits its functionality from the
221 initialization is loading a set of functions from a shared library
304 format: custom_pack <var name> <c++ expression that pack data from var into the stream>
311 to the codec, out from data that returns from the codec.
/device/generic/vulkan-cereal/protocols/generic-apigen/
DREADME52 Since ‘foo’ returns value, the caller is expected to read back the return packet from the server->c…
63 in : Data is sent from the caller to the calle
64 out: Data is sent from the callee to the caller
65 in_out: data is sent from the caller and return in place.
113 from c/c++ header files or similar.
177 context from a Thread Local Storage (TLS) location.
190 encoder data structure inherits its functionality from the
221 initialization is loading a set of functions from a shared library
304 format: custom_pack <var name> <c++ expression that pack data from var into the stream>
311 to the codec, out from data that returns from the codec.
/device/linaro/dragonboard/installer/db845c/
DREADME2 and AOSP images(built from sources) on db845c.
11 like "adb reboot bootloader" from the host, or
42 binaries and AOSP images by running the following script from
69 Then run the recovery script from the
79 you may start again from the top of this document.
/device/google/cuttlefish/guest/commands/bt_vhci_forwarder/
Dmain.cpp60 ssize_t forward(int from, int to, std::optional<unsigned char> filter_out, in forward() argument
62 ssize_t count = TEMP_FAILURE_RETRY(read(from, buf, kBufferSize)); in forward()
82 ssize_t forward(int from, int to, unsigned char* buf) { in forward() argument
83 return forward(from, to, std::nullopt, buf); in forward()
/device/google/contexthub/firmware/variant/
DREADME11 - wakeup-gpio has direction from Application Processor (AP) to ContextHub
12 - irq1 has direction from ContextHub to AP (wakeup interrupt)
13 - irq2 has direction from ContextHub to AP (non-wakeup interrupt) (optional)
/device/google/cuttlefish/host/commands/secure_env/rust/
Drpc.rs119 let cose_key_cbor = pub_cose_key.to_cbor_value().map_err(CborError::from)?; in generate_dice_artifacts()
125 (Value::Integer(1.into()), Value::Text(String::from("Issuer"))), in generate_dice_artifacts()
127 (Value::Integer(2.into()), Value::Text(String::from("Subject"))), in generate_dice_artifacts()
147 let dice_chain_entry_cbor = dice_chain_entry.to_cbor_value().map_err(CborError::from)?; in generate_dice_artifacts()
/device/google/raviole/audio/slider/tuning/waves/
Dwaves_config.ini2 # (Optional) The supported features list for platform vendors to query from.
3 # Platform vendors should call maxxaudio_qdsp_is_feature_supported with a string to query from the …
36 # The numbers could vary from device to device.

12345678910>>...21