Home
last modified time | relevance | path

Searched refs:type (Results 1 – 25 of 5428) sorted by relevance

12345678910>>...218

/hardware/google/gfxstream/host/vulkan/
DVulkanHandleMapping.h34 #define DECLARE_HANDLE_MAP_PURE_VIRTUAL_METHOD(type) \ argument
35 virtual void mapHandles_##type(type* handles, size_t count = 1) = 0; \
36 virtual void mapHandles_##type##_u64(const type* handles, uint64_t* handle_u64s, \
38 virtual void mapHandles_u64_##type(const uint64_t* handle_u64s, type* handles, \
51 #define DECLARE_HANDLE_MAP_OVERRIDE(type) \
52 void mapHandles_##type(type* handles, size_t count) override; \
53 void mapHandles_##type##_u64(const type* handles, uint64_t* handle_u64s, size_t count) \
55 void mapHandles_u64_##type(const uint64_t* handle_u64s, type* handles, size_t count) override;
60 #define DEFINE_BOXED_DISPATCHABLE_HANDLE_GLOBAL_API_DECL(type) \
61 type unbox_##type(type boxed); \
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/network/
DRadioIndication-network.cpp40 Return<void> RadioIndication::barringInfoChanged(V1_0::RadioIndicationType type, in barringInfoChanged() argument
43 LOG_CALL << type; in barringInfoChanged()
44 networkCb()->barringInfoChanged(toAidl(type), toAidl(cellIdentity), toAidl(barringInfos)); in barringInfoChanged()
48 Return<void> RadioIndication::cdmaPrlChanged(V1_0::RadioIndicationType type, int32_t version) { in cdmaPrlChanged() argument
49 LOG_CALL << type; in cdmaPrlChanged()
50 networkCb()->cdmaPrlChanged(toAidl(type), version); in cdmaPrlChanged()
54 Return<void> RadioIndication::cellInfoList(V1_0::RadioIndicationType type, in cellInfoList() argument
56 LOG_CALL << type; in cellInfoList()
61 Return<void> RadioIndication::cellInfoList_1_2(V1_0::RadioIndicationType type, in cellInfoList_1_2() argument
63 LOG_CALL << type; in cellInfoList_1_2()
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/voice/
DRadioIndication-voice.cpp39 Return<void> RadioIndication::callRing(V1_0::RadioIndicationType type, bool isGsm, in callRing() argument
41 LOG_CALL << type; in callRing()
42 voiceCb()->callRing(toAidl(type), isGsm, toAidl(record)); in callRing()
46 Return<void> RadioIndication::callStateChanged(V1_0::RadioIndicationType type) { in callStateChanged() argument
47 LOG_CALL << type; in callStateChanged()
48 voiceCb()->callStateChanged(toAidl(type)); in callStateChanged()
52 Return<void> RadioIndication::cdmaCallWaiting(V1_0::RadioIndicationType type, in cdmaCallWaiting() argument
54 LOG_CALL << type; in cdmaCallWaiting()
55 voiceCb()->cdmaCallWaiting(toAidl(type), toAidl(callWaitingRecord)); in cdmaCallWaiting()
59 Return<void> RadioIndication::cdmaInfoRec(V1_0::RadioIndicationType type, in cdmaInfoRec() argument
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/cereal/
Dapi_log_decoder.py192 def process_type(self, type: VulkanType):
197 if type.typeName == "VkStructureType":
200 type.parent.structEnumExpr))
203 if type.isNextPointer():
206 if type.paramName == "commandBuffer":
207 if type.parent.name != "vkQueueFlushCommandsGOOGLE":
211 if type.isEnum(self.typeInfo):
212 self.needed_enums.add(type.typeName)
215 type.paramName, type.typeName))
219 if type.isBitmask(self.typeInfo):
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/sim/
DRadioIndication-sim.cpp39 Return<void> RadioIndication::carrierInfoForImsiEncryption(V1_0::RadioIndicationType type) { in carrierInfoForImsiEncryption() argument
40 LOG_CALL << type; in carrierInfoForImsiEncryption()
41 simCb()->carrierInfoForImsiEncryption(toAidl(type)); in carrierInfoForImsiEncryption()
46 V1_0::RadioIndicationType type, V1_0::CdmaSubscriptionSource cdmaSource) { in cdmaSubscriptionSourceChanged() argument
47 LOG_CALL << type; in cdmaSubscriptionSourceChanged()
48 simCb()->cdmaSubscriptionSourceChanged(toAidl(type), aidl::CdmaSubscriptionSource(cdmaSource)); in cdmaSubscriptionSourceChanged()
52 Return<void> RadioIndication::simPhonebookChanged(V1_0::RadioIndicationType type) { in simPhonebookChanged() argument
53 LOG_CALL << type; in simPhonebookChanged()
54 simCb()->simPhonebookChanged(toAidl(type)); in simPhonebookChanged()
59 V1_0::RadioIndicationType type, V1_6::PbReceivedStatus status, in simPhonebookRecordsReceived() argument
[all …]
/hardware/google/gfxstream/guest/vulkan_enc/
DResources.cpp40 #define GOLDFISH_VK_NEW_DISPATCHABLE_FROM_HOST_IMPL(type) \ argument
41 type new_from_host_##type(type underlying) { \
42 struct goldfish_##type* res = \
43 static_cast<goldfish_##type*>(malloc(sizeof(goldfish_##type))); \
45 mesa_loge("FATAL: Failed to alloc " #type " handle"); \
59 return reinterpret_cast<type>(res); \
62 #define GOLDFISH_VK_NEW_TRIVIAL_NON_DISPATCHABLE_FROM_HOST_IMPL(type) \ argument
63 type new_from_host_##type(type underlying) { \
64 struct goldfish_##type* res = \
65 static_cast<goldfish_##type*>(malloc(sizeof(goldfish_##type))); \
[all …]
DResources.h58 #define GOLDFISH_VK_DEFINE_DISPATCHABLE_HANDLE_STRUCT(type) \ argument
59 struct goldfish_##type { \
73 #define GOLDFISH_VK_DEFINE_TRIVIAL_NON_DISPATCHABLE_HANDLE_STRUCT(type) \ argument
74 struct goldfish_##type { \
82 #define GOLDFISH_VK_NEW_FROM_HOST_DECL(type) type new_from_host_##type(type); argument
84 #define GOLDFISH_VK_AS_GOLDFISH_DECL(type) struct goldfish_##type* as_goldfish_##type(type); argument
86 #define GOLDFISH_VK_GET_HOST_DECL(type) type get_host_##type(type); argument
88 #define GOLDFISH_VK_DELETE_GOLDFISH_DECL(type) void delete_goldfish_##type(type); argument
90 #define GOLDFISH_VK_IDENTITY_DECL(type) type vk_handle_identity_##type(type); argument
92 #define GOLDFISH_VK_NEW_FROM_HOST_U64_DECL(type) type new_from_host_u64_##type(uint64_t); argument
[all …]
DVulkanHandleMapping.h29 #define DECLARE_HANDLE_MAP_PURE_VIRTUAL_METHOD(type) \ argument
30 virtual void mapHandles_##type(type* handles, size_t count = 1) = 0; \
31 virtual void mapHandles_##type##_u64(const type* handles, uint64_t* handle_u64s, \
33 virtual void mapHandles_u64_##type(const uint64_t* handle_u64s, type* handles, \
43 #define DECLARE_HANDLE_MAP_OVERRIDE(type) \ argument
44 void mapHandles_##type(type* handles, size_t count) override; \
45 void mapHandles_##type##_u64(const type* handles, uint64_t* handle_u64s, size_t count) \
47 void mapHandles_u64_##type(const uint64_t* handle_u64s, type* handles, size_t count) override;
/hardware/google/gfxstream/guest/mesa/src/util/
Dralloc.h68 #define ralloc(ctx, type) ((type *) ralloc_size(ctx, sizeof(type))) argument
79 #define rzalloc(ctx, type) ((type *) rzalloc_size(ctx, sizeof(type))) argument
157 #define ralloc_array(ctx, type, count) \ argument
158 ((type *) ralloc_array_size(ctx, sizeof(type), count))
174 #define rzalloc_array(ctx, type, count) \ argument
175 ((type *) rzalloc_array_size(ctx, sizeof(type), count))
194 #define reralloc(ctx, ptr, type, count) \ argument
195 ((type *) reralloc_array_size(ctx, ptr, sizeof(type), count))
216 #define rerzalloc(ctx, ptr, type, old_count, new_count) \ argument
217 ((type *) rerzalloc_array_size(ctx, ptr, sizeof(type), old_count, new_count))
[all …]
Du_dynarray.h202 …til_dynarray_append(buf, type, v) do {type __v = (v); memcpy(util_dynarray_grow_bytes((buf), 1, si… argument
204 #define util_dynarray_resize(buf, type, nelts) util_dynarray_resize_bytes(buf, (nelts), sizeof(type argument
205 #define util_dynarray_grow(buf, type, ngrow) util_dynarray_grow_bytes(buf, (ngrow), sizeof(type)) argument
206 #define util_dynarray_top_ptr(buf, type) (type*)((char*)(buf)->data + (buf)->size - sizeof(type)) argument
207 #define util_dynarray_top(buf, type) *util_dynarray_top_ptr(buf, type) argument
208 #define util_dynarray_pop_ptr(buf, type) (type*)((char*)(buf)->data + ((buf)->size -= sizeof(type))) argument
209 #define util_dynarray_pop(buf, type) *util_dynarray_pop_ptr(buf, type) argument
210 #define util_dynarray_contains(buf, type) ((buf)->size >= sizeof(type)) argument
211 #define util_dynarray_element(buf, type, idx) ((type*)(buf)->data + (idx)) argument
214 #define util_dynarray_num_elements(buf, type) ((buf)->size / sizeof(type)) argument
[all …]
Dlist.h202 #define list_first_entry(ptr, type, member) \ argument
203 list_entry((ptr)->next, type, member)
205 #define list_last_entry(ptr, type, member) \ argument
206 list_entry((ptr)->prev, type, member)
236 #define list_for_each_entry(type, pos, head, member) \ argument
237 for (type *pos = list_entry((head)->next, type, member), \
238 *__next = list_entry(pos->member.next, type, member); \
240 pos = list_entry(pos->member.next, type, member), \
242 __next = list_entry(__next->member.next, type, member))
244 #define list_for_each_entry_safe(type, pos, head, member) \ argument
[all …]
Drb_tree.h117 #define rb_node_data(type, node, field) \ argument
118 ((type *)(((char *)(node)) - rb_tree_offsetof(type, field, node)))
272 #define rb_tree_foreach(type, iter, T, field) \ argument
273 for (type *iter, *__node = (type *)rb_tree_first(T); \
275 (iter = rb_node_data(type, (struct rb_node *)__node, field), true); \
276 __node = (type *)rb_node_next((struct rb_node *)__node))
289 #define rb_tree_foreach_safe(type, iter, T, field) \ argument
290 for (type *iter, \
291 *__node = (type *)rb_tree_first(T), \
292 *__next = (type *)rb_node_next_or_null((struct rb_node *)__node); \
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/messaging/
DRadioIndication-messaging.cpp37 Return<void> RadioIndication::cdmaNewSms(V1_0::RadioIndicationType type, in cdmaNewSms() argument
39 LOG_CALL << type; in cdmaNewSms()
40 messagingCb()->cdmaNewSms(toAidl(type), toAidl(msg)); in cdmaNewSms()
44 Return<void> RadioIndication::cdmaRuimSmsStorageFull(V1_0::RadioIndicationType type) { in cdmaRuimSmsStorageFull() argument
45 LOG_CALL << type; in cdmaRuimSmsStorageFull()
46 messagingCb()->cdmaRuimSmsStorageFull(toAidl(type)); in cdmaRuimSmsStorageFull()
50 Return<void> RadioIndication::newBroadcastSms(V1_0::RadioIndicationType type, in newBroadcastSms() argument
52 LOG_CALL << type; in newBroadcastSms()
53 messagingCb()->newBroadcastSms(toAidl(type), data); in newBroadcastSms()
57 Return<void> RadioIndication::newSms(V1_0::RadioIndicationType type, const hidl_vec<uint8_t>& pdu) { in newSms() argument
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/data/
DRadioIndication-data.cpp39 Return<void> RadioIndication::dataCallListChanged(V1_0::RadioIndicationType type, in dataCallListChanged() argument
41 LOG_CALL << type; in dataCallListChanged()
46 Return<void> RadioIndication::dataCallListChanged_1_4(V1_0::RadioIndicationType type, in dataCallListChanged_1_4() argument
48 LOG_CALL << type; in dataCallListChanged_1_4()
54 V1_0::RadioIndicationType type, const hidl_vec<V1_5::SetupDataCallResult>& dcList) { in dataCallListChanged_1_5() argument
55 LOG_CALL << type; in dataCallListChanged_1_5()
56 dataCb()->dataCallListChanged(toAidl(type), toAidl(dcList)); in dataCallListChanged_1_5()
61 V1_0::RadioIndicationType type, const hidl_vec<V1_6::SetupDataCallResult>& dcList) { in dataCallListChanged_1_6() argument
62 LOG_CALL << type; in dataCallListChanged_1_6()
63 dataCb()->dataCallListChanged(toAidl(type), toAidl(dcList)); in dataCallListChanged_1_6()
[all …]
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/
Dvk_sync.c38 vk_sync_type_validate(const struct vk_sync_type *type) in vk_sync_type_validate() argument
40 assert(type->init); in vk_sync_type_validate()
41 assert(type->finish); in vk_sync_type_validate()
43 assert(type->features & (VK_SYNC_FEATURE_BINARY | in vk_sync_type_validate()
46 if (type->features & VK_SYNC_FEATURE_TIMELINE) { in vk_sync_type_validate()
47 assert(type->features & VK_SYNC_FEATURE_GPU_WAIT); in vk_sync_type_validate()
48 assert(type->features & VK_SYNC_FEATURE_CPU_WAIT); in vk_sync_type_validate()
49 assert(type->features & VK_SYNC_FEATURE_CPU_SIGNAL); in vk_sync_type_validate()
50 assert(type->features & (VK_SYNC_FEATURE_WAIT_BEFORE_SIGNAL | in vk_sync_type_validate()
52 assert(type->signal); in vk_sync_type_validate()
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/include/libradiocompat/
DRadioIndication.h66 Return<void> radioStateChanged(V1_0::RadioIndicationType type,
68 Return<void> callStateChanged(V1_0::RadioIndicationType type) override;
69 Return<void> networkStateChanged(V1_0::RadioIndicationType type) override;
70 Return<void> newSms(V1_0::RadioIndicationType type, const hidl_vec<uint8_t>& pdu) override;
71 Return<void> newSmsStatusReport(V1_0::RadioIndicationType type,
73 Return<void> newSmsOnSim(V1_0::RadioIndicationType type, int32_t recordNumber) override;
74 Return<void> onUssd(V1_0::RadioIndicationType type, V1_0::UssdModeType modeType,
76 Return<void> nitzTimeReceived(V1_0::RadioIndicationType type, const hidl_string& nitzTime,
78 Return<void> currentSignalStrength(V1_0::RadioIndicationType type,
80 Return<void> dataCallListChanged(V1_0::RadioIndicationType type,
[all …]
/hardware/qcom/sm8150/thermal/
Dthermal_target.c109 .type = DEVICE_TEMPERATURE_CPU,
115 .type = DEVICE_TEMPERATURE_GPU,
122 .type = DEVICE_TEMPERATURE_BATTERY,
129 .type = DEVICE_TEMPERATURE_SKIN,
158 .type = DEVICE_TEMPERATURE_CPU,
164 .type = DEVICE_TEMPERATURE_GPU,
171 .type = DEVICE_TEMPERATURE_BATTERY,
178 .type = DEVICE_TEMPERATURE_SKIN,
195 .type = DEVICE_TEMPERATURE_CPU,
201 .type = DEVICE_TEMPERATURE_GPU,
[all …]
/hardware/interfaces/broadcastradio/common/utils1x/
DUtils.cpp47 const IdentifierType type) { in bothHaveId() argument
48 return hasId(a, type) && hasId(b, type); in bothHaveId()
52 const IdentifierType type) { in anyHaveId() argument
53 return hasId(a, type) || hasId(b, type); in anyHaveId()
57 const IdentifierType type) { in haveEqualIds() argument
58 if (!bothHaveId(a, b, type)) return false; in haveEqualIds()
62 return getId(a, type) == getId(b, type); in haveEqualIds()
68 auto type = getType(a); in tunesTo() local
70 switch (type) { in tunesTo()
98 ALOGW("Unsupported program type: %s", toString(type).c_str()); in tunesTo()
[all …]
/hardware/interfaces/neuralnetworks/aidl/utils/src/
DHalUtils.cpp40 for (aidl_hal::OperandType type : kOperandTypeRange) { in nonExtensionOperandPerformance() local
41 if (type != aidl_hal::OperandType::SUBGRAPH) { in nonExtensionOperandPerformance()
42 ret.push_back(aidl_hal::OperandPerformance{type, perf}); in nonExtensionOperandPerformance()
47 return a.type < b.type; in nonExtensionOperandPerformance()
54 aidl_hal::OperandType type, aidl_hal::PerformanceInfo perf) { in update() argument
56 const auto it = std::lower_bound(operandPerformance->begin(), operandPerformance->end(), type, in update()
58 aidl_hal::OperandType type) { return perf.type < type; }); in update() argument
60 << toString(type) << " not in operand performance vector"; in update()
64 bool isExtensionOperandType(aidl_hal::OperandType type) { in isExtensionOperandType() argument
65 return isExtension(convert(type).value()); in isExtensionOperandType()
[all …]
/hardware/interfaces/radio/aidl/compat/libradiocompat/modem/
DRadioIndication-modem.cpp39 Return<void> RadioIndication::hardwareConfigChanged(V1_0::RadioIndicationType type, in hardwareConfigChanged() argument
41 LOG_CALL << type; in hardwareConfigChanged()
42 modemCb()->hardwareConfigChanged(toAidl(type), toAidl(configs)); in hardwareConfigChanged()
46 Return<void> RadioIndication::modemReset(V1_0::RadioIndicationType type, const hidl_string& reasn) { in modemReset() argument
47 LOG_CALL << type; in modemReset()
48 modemCb()->modemReset(toAidl(type), reasn); in modemReset()
52 Return<void> RadioIndication::radioCapabilityIndication(V1_0::RadioIndicationType type, in radioCapabilityIndication() argument
54 LOG_CALL << type; in radioCapabilityIndication()
55 modemCb()->radioCapabilityIndication(toAidl(type), toAidl(rc)); in radioCapabilityIndication()
65 Return<void> RadioIndication::rilConnected(V1_0::RadioIndicationType type) { in rilConnected() argument
[all …]
/hardware/google/gfxstream/third-party/glm/include/glm/detail/
Dtype_int.hpp83 typedef char type; typedef
89 typedef short type; typedef
95 typedef int type; typedef
101 typedef long type; typedef
107 typedef char type; typedef
113 typedef short type; typedef
119 typedef int type; typedef
125 typedef long type; typedef
135 typedef unsigned char type; typedef
141 typedef unsigned short type; typedef
[all …]
/hardware/interfaces/radio/aidl/android/hardware/radio/voice/
DIRadioVoiceIndication.aidl48 void callRing(in RadioIndicationType type, in boolean isGsm, in CdmaSignalInfoRecord record); in callRing() argument
58 void callStateChanged(in RadioIndicationType type); in callStateChanged() argument
66 void cdmaCallWaiting(in RadioIndicationType type, in CdmaCallWaiting callWaitingRecord); in cdmaCallWaiting() argument
75 void cdmaInfoRec(in RadioIndicationType type, in CdmaInformationRecord[] records); in cdmaInfoRec() argument
83 void cdmaOtaProvisionStatus(in RadioIndicationType type, in CdmaOtaProvisionStatus status); in cdmaOtaProvisionStatus() argument
108 in RadioIndicationType type, in EmergencyNumber[] emergencyNumberList); in currentEmergencyNumberList() argument
116 void enterEmergencyCallbackMode(in RadioIndicationType type); in enterEmergencyCallbackMode() argument
124 void exitEmergencyCallbackMode(in RadioIndicationType type); in exitEmergencyCallbackMode() argument
132 void indicateRingbackTone(in RadioIndicationType type, in boolean start); in indicateRingbackTone() argument
140 void onSupplementaryServiceIndication(in RadioIndicationType type, in StkCcUnsolSsResult ss); in onSupplementaryServiceIndication() argument
[all …]
/hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
Dloc_eng_dmn_conn_handler.cpp52 AGpsExtType type; in loc_eng_dmn_conn_loc_api_server_if_request_handler() local
53 switch (pmsg->cmsg.cmsg_if_request.type) { in loc_eng_dmn_conn_loc_api_server_if_request_handler()
57 type = AGPS_TYPE_SUPL; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
63 type = AGPS_TYPE_WIFI; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
69 type = AGPS_TYPE_ANY; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
84 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
97 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
110 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
123 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
148 AGpsExtType type; in loc_eng_dmn_conn_loc_api_server_if_release_handler() local
[all …]
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
Dloc_eng_dmn_conn_handler.cpp52 AGpsExtType type; in loc_eng_dmn_conn_loc_api_server_if_request_handler() local
53 switch (pmsg->cmsg.cmsg_if_request.type) { in loc_eng_dmn_conn_loc_api_server_if_request_handler()
57 type = AGPS_TYPE_SUPL; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
63 type = AGPS_TYPE_WIFI; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
69 type = AGPS_TYPE_ANY; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
84 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
97 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
110 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
123 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
148 AGpsExtType type; in loc_eng_dmn_conn_loc_api_server_if_release_handler() local
[all …]
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
Dloc_eng_dmn_conn_handler.cpp52 AGpsExtType type; in loc_eng_dmn_conn_loc_api_server_if_request_handler() local
53 switch (pmsg->cmsg.cmsg_if_request.type) { in loc_eng_dmn_conn_loc_api_server_if_request_handler()
57 type = AGPS_TYPE_SUPL; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
63 type = AGPS_TYPE_WIFI; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
69 type = AGPS_TYPE_ANY; in loc_eng_dmn_conn_loc_api_server_if_request_handler()
84 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
97 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
110 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
123 type, in loc_eng_dmn_conn_loc_api_server_if_request_handler()
148 AGpsExtType type; in loc_eng_dmn_conn_loc_api_server_if_release_handler() local
[all …]

12345678910>>...218