Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 25 of 190) sorted by relevance

12345678

/hardware/libhardware/modules/usbcamera/
DMetadata.cpp61 int Metadata::addUInt8(uint32_t tag, int count, const uint8_t *data) { in addUInt8() argument
62 if (!validate(tag, TYPE_BYTE, count)) return -EINVAL; in addUInt8()
63 return add(tag, count, data); in addUInt8()
66 int Metadata::add1UInt8(uint32_t tag, const uint8_t data) { in add1UInt8() argument
67 return addUInt8(tag, 1, &data); in add1UInt8()
70 int Metadata::addInt32(uint32_t tag, int count, const int32_t *data) { in addInt32() argument
71 if (!validate(tag, TYPE_INT32, count)) return -EINVAL; in addInt32()
72 return add(tag, count, data); in addInt32()
75 int Metadata::addFloat(uint32_t tag, int count, const float *data) { in addFloat() argument
76 if (!validate(tag, TYPE_FLOAT, count)) return -EINVAL; in addFloat()
[all …]
DMetadata.h34 int addUInt8(uint32_t tag, int count, const uint8_t *data);
35 int add1UInt8(uint32_t tag, const uint8_t data);
36 int addInt32(uint32_t tag, int count, const int32_t *data);
37 int addFloat(uint32_t tag, int count, const float *data);
38 int addInt64(uint32_t tag, int count, const int64_t *data);
39 int addDouble(uint32_t tag, int count, const double *data);
40 int addRational(uint32_t tag, int count,
53 bool validate(uint32_t tag, int tag_type, int count);
55 int add(uint32_t tag, int count, const void *tag_data);
/hardware/libhardware/modules/camera/
DMetadata.cpp66 int Metadata::addUInt8(uint32_t tag, int count, const uint8_t *data) in addUInt8() argument
68 if (!validate(tag, TYPE_BYTE, count)) return -EINVAL; in addUInt8()
69 return add(tag, count, data); in addUInt8()
72 int Metadata::add1UInt8(uint32_t tag, const uint8_t data) in add1UInt8() argument
74 return addUInt8(tag, 1, &data); in add1UInt8()
77 int Metadata::addInt32(uint32_t tag, int count, const int32_t *data) in addInt32() argument
79 if (!validate(tag, TYPE_INT32, count)) return -EINVAL; in addInt32()
80 return add(tag, count, data); in addInt32()
83 int Metadata::addFloat(uint32_t tag, int count, const float *data) in addFloat() argument
85 if (!validate(tag, TYPE_FLOAT, count)) return -EINVAL; in addFloat()
[all …]
DVendorTags.cpp91 const Section* getSection(uint32_t tag) in getSection() argument
93 uint32_t section = (tag - vendor_section_start) >> 16; in getSection()
95 if (tag < vendor_section_start) { in getSection()
96 ALOGE("%s: Tag 0x%x before vendor section", __func__, tag); in getSection()
101 ALOGE("%s: Tag 0x%x after vendor section", __func__, tag); in getSection()
109 const Entry* getEntry(uint32_t tag) in getEntry() argument
111 const Section* section = getSection(tag); in getEntry()
117 if (tag >= section->end) { in getEntry()
118 ALOGE("%s: Tag 0x%x outside section", __func__, tag); in getEntry()
122 index = tag - section->start; in getEntry()
[all …]
DMetadata.h34 int addUInt8(uint32_t tag, int count, const uint8_t *data);
35 int add1UInt8(uint32_t tag, const uint8_t data);
36 int addInt32(uint32_t tag, int count, const int32_t *data);
37 int addFloat(uint32_t tag, int count, const float *data);
38 int addInt64(uint32_t tag, int count, const int64_t *data);
39 int addDouble(uint32_t tag, int count, const double *data);
40 int addRational(uint32_t tag, int count,
53 bool validate(uint32_t tag, int tag_type, int count);
55 int add(uint32_t tag, int count, const void *tag_data);
DCameraHAL.cpp137 static const char* get_section_name(const vendor_tag_ops_t* ops, uint32_t tag) in get_section_name() argument
139 return gVendorTags.getSectionName(ops, tag); in get_section_name()
142 static const char* get_tag_name(const vendor_tag_ops_t* ops, uint32_t tag) in get_tag_name() argument
144 return gVendorTags.getTagName(ops, tag); in get_tag_name()
147 static int get_tag_type(const vendor_tag_ops_t* ops, uint32_t tag) in get_tag_type() argument
149 return gVendorTags.getTagType(ops, tag); in get_tag_type()
173 tag : HARDWARE_MODULE_TAG,
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
Dgen_msvs_proj.sh83 die "Missing attribute value in '$opt' while generating $tag tag"
89 local tag=$1
92 echo "${indent}<${tag}"
97 echo "${indent}<${tag}>"
103 local tag=$1
105 echo "${indent}</${tag}>"
108 tag() { function
109 local tag=$1
112 echo "${indent}<${tag}"
118 echo "${indent}<${tag}/>"
[all …]
Dgen_msvs_vcxproj.sh84 die "Missing attribute value in '$opt' while generating $tag tag"
90 local tag=$1
93 echo "${indent}<${tag}"
98 echo "${indent}<${tag}>"
104 local tag=$1
106 echo "${indent}</${tag}>"
109 tag() { function
110 local tag=$1
113 echo "${indent}<${tag}"
119 echo "${indent}<${tag}/>"
[all …]
/hardware/libhardware/include/hardware/
Dkeymaster_defs.h287 keymaster_tag_t tag; member
439 static inline keymaster_tag_type_t keymaster_tag_get_type(keymaster_tag_t tag) { in keymaster_tag_get_type() argument
440 return (keymaster_tag_type_t)(tag & (0xF << 28)); in keymaster_tag_get_type()
443 static inline uint32_t keymaster_tag_mask_type(keymaster_tag_t tag) { in keymaster_tag_mask_type() argument
444 return tag & 0x0FFFFFFF; in keymaster_tag_mask_type()
457 static inline bool keymaster_tag_repeatable(keymaster_tag_t tag) { in keymaster_tag_repeatable() argument
458 return keymaster_tag_type_repeatable(keymaster_tag_get_type(tag)); in keymaster_tag_repeatable()
463 inline keymaster_key_param_t keymaster_param_enum(keymaster_tag_t tag, uint32_t value) { in keymaster_param_enum() argument
467 param.tag = tag; in keymaster_param_enum()
472 inline keymaster_key_param_t keymaster_param_int(keymaster_tag_t tag, uint32_t value) { in keymaster_param_int() argument
[all …]
/hardware/qcom/display/msm8996/sdm/include/utils/
Ddebug.h38 #define DLOG(tag, method, format, ...) Debug::Get()->method(tag, __CLASS__ "::%s: " format, \ argument
41 #define DLOGE_IF(tag, format, ...) DLOG(tag, Error, format, ##__VA_ARGS__) argument
42 #define DLOGW_IF(tag, format, ...) DLOG(tag, Warning, format, ##__VA_ARGS__) argument
43 #define DLOGI_IF(tag, format, ...) DLOG(tag, Info, format, ##__VA_ARGS__) argument
44 #define DLOGD_IF(tag, format, ...) DLOG(tag, Debug, format, ##__VA_ARGS__) argument
45 #define DLOGV_IF(tag, format, ...) DLOG(tag, Verbose, format, ##__VA_ARGS__) argument
/hardware/bsp/intel/peripheral/sensors/mraa/doc/
DDoxyfile20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
[all …]
/hardware/bsp/intel/peripheral/libupm/doxy/
DDoxyfile.in20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
[all …]
DDoxyfile.java.in20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
[all …]
/hardware/bsp/intel/peripheral/libmraa/
DDoxyfile.java.in20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
[all …]
DDoxyfile.in20 # This tag specifies the encoding used for all characters in the config file
22 # before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
29 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
37 # The PROJECT_NUMBER tag can be used to enter a project or revision number. This
43 # Using the PROJECT_BRIEF tag one can provide an optional one line description
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
56 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
73 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
[all …]
/hardware/qcom/camera/QCamera2/HAL3/
DQCamera3VendorTags.cpp254 uint32_t tag) in get_section_name() argument
261 uint32_t section = tag >> 16; in get_section_name()
269 LOGL("section_name[%d] is %s", tag, ret); in get_section_name()
288 uint32_t tag) in get_tag_name() argument
292 uint32_t section = tag >> 16; in get_tag_name()
294 uint32_t tag_index = tag & 0xFFFF; in get_tag_name()
303 else if (tag >= (uint32_t)qcamera3_ext3_section_bounds[section_index]) in get_tag_name()
309 LOGL("tag name for tag %d is %s", tag, ret); in get_tag_name()
330 uint32_t tag) in get_tag_type() argument
334 uint32_t section = tag >> 16; in get_tag_type()
[all …]
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
Dlog.h285 #define MPL_LOG(priority, tag, fmt, ...) \ argument
286 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
294 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ argument
295 LOG(priority, tag, fmt, ##__VA_ARGS__)
297 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
298 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
300 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
301 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__)
310 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) \ argument
311 android_vprintLog(priority, NULL, tag, fmt, args)
[all …]
/hardware/invensense/6515/libsensors_iio/software/core/driver/include/
Dlog.h339 #define MPL_LOG(priority, tag, fmt, ...) \ argument
340 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
348 #define MPL_LOG_PRI(priority, tag, fmt, ...) \ argument
349 LOG(priority, tag, fmt, ##__VA_ARGS__)
351 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
352 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
354 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
355 _MLPrintLog(MPL_##priority, tag, fmt, ##__VA_ARGS__)
364 #define MPL_LOG_PRI_VA(priority, tag, fmt, args) \ argument
365 android_vprintLog(priority, NULL, tag, fmt, args)
[all …]
/hardware/libhardware/tests/camera2/
DCameraMetadataTests.cpp63 int GetTypeFromTag(uint32_t tag) const { in GetTypeFromTag()
64 return get_camera_metadata_tag_type(tag); in GetTypeFromTag()
67 int GetTypeFromStaticTag(uint32_t tag) const { in GetTypeFromStaticTag()
69 camera_metadata_ro_entry entry = staticInfo.find(tag); in GetTypeFromStaticTag()
73 int GetEntryCountFromStaticTag(uint32_t tag) const { in GetEntryCountFromStaticTag()
75 camera_metadata_ro_entry entry = staticInfo.find(tag); in GetEntryCountFromStaticTag()
79 bool HasElementInArrayFromStaticTag(uint32_t tag, int32_t element) const { in HasElementInArrayFromStaticTag() argument
81 camera_metadata_ro_entry entry = staticInfo.find(tag); in HasElementInArrayFromStaticTag()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
Dlibs.doxy_template28 # This tag specifies the encoding used for all characters in the config file that
30 # the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into
36 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
41 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
48 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
57 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
69 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
76 # If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend
83 # This tag implements a quasi-intelligent brief description abbreviator
101 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
[all …]
/hardware/qcom/display/msm8996/sdm/include/core/
Ddebug_interface.h69 virtual void Error(DebugTag tag, const char *format, ...) = 0;
76 virtual void Warning(DebugTag tag, const char *format, ...) = 0;
83 virtual void Info(DebugTag tag, const char *format, ...) = 0;
90 virtual void Debug(DebugTag tag, const char *format, ...) = 0;
97 virtual void Verbose(DebugTag tag, const char *format, ...) = 0;
/hardware/qcom/display/msm8996/sdm/libs/hwc/
Dhwc_debugger.h55 virtual void Error(DebugTag tag, const char *format, ...);
56 virtual void Warning(DebugTag tag, const char *format, ...);
57 virtual void Info(DebugTag tag, const char *format, ...);
58 virtual void Debug(DebugTag tag, const char *format, ...);
59 virtual void Verbose(DebugTag tag, const char *format, ...);
/hardware/intel/common/libva/doc/
DDoxyfile17 # This tag specifies the encoding used for all characters in the config file
19 # text before the first occurrence of this tag. Doxygen uses libiconv (or the
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
30 # The PROJECT_NUMBER tag can be used to enter a project or revision number.
36 # Using the PROJECT_BRIEF tag one can provide an optional one line description for a project that a…
40 # With the PROJECT_LOGO tag one can specify an logo or icon that is
47 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
54 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
63 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
76 # If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/tools/
Dauthor_first_release.sh10 tags=${@:-$(git tag)}
11 for tag in $tags; do
12 git shortlog -n -e -s $tag |
/hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
Dviddec_emit.c59 item.tag.tag_phys_addr = ibuf->phys; in viddec_emit_contr_tag()
60 item.tag.tag_phys_len = ibuf->len; in viddec_emit_contr_tag()
61 item.tag.tag_value = ibuf->id; in viddec_emit_contr_tag()
73 item.tag.tag_phys_addr = -1; in viddec_emit_assoc_tag()
74 item.tag.tag_phys_len = -1; in viddec_emit_assoc_tag()
75 item.tag.tag_value = id; in viddec_emit_assoc_tag()

12345678