Home
last modified time | relevance | path

Searched refs:data_type (Results 1 - 25 of 254) sorted by relevance

1234567891011

/third_party/ffmpeg/libavformat/
H A Ds337m.c37 int data_type, int data_size, in s337m_get_offset_and_codec()
45 data_type >>= 8; in s337m_get_offset_and_codec()
49 data_type >>= 8; in s337m_get_offset_and_codec()
53 if ((data_type & 0x1F) != 0x1C) { in s337m_get_offset_and_codec()
55 avpriv_report_missing_feature(avc, "Data type %#x in SMPTE 337M", data_type & 0x1F); in s337m_get_offset_and_codec()
90 int i, pos, sum, max, data_type, data_size, offset; in s337m_probe() local
100 data_type = AV_RL16(buf ); in s337m_probe()
103 data_type = AV_RL24(buf ); in s337m_probe()
107 if (s337m_get_offset_and_codec(NULL, state, data_type, data_size, &offset, NULL)) in s337m_probe()
149 int ret, data_type, data_siz in s337m_read_packet() local
35 s337m_get_offset_and_codec(void *avc, uint64_t state, int data_type, int data_size, int *offset, enum AVCodecID *codec) s337m_get_offset_and_codec() argument
[all...]
H A Dspdifdec.c37 enum IEC61937DataType data_type, in spdif_get_offset_and_codec()
45 switch (data_type & 0xff) { in spdif_get_offset_and_codec()
99 data_type); in spdif_get_offset_and_codec()
176 enum IEC61937DataType data_type; in ff_spdif_read_packet() local
187 data_type = avio_rl16(pb); in ff_spdif_read_packet()
204 ret = spdif_get_offset_and_codec(s, data_type, pkt->data, in ff_spdif_read_packet()
36 spdif_get_offset_and_codec(AVFormatContext *s, enum IEC61937DataType data_type, const char *buf, int *offset, enum AVCodecID *codec) spdif_get_offset_and_codec() argument
H A Dspdifenc.c41 * Pd - length code (number of bits or bytes of encapsuled frame - according to data_type)
60 enum IEC61937DataType data_type;///< burst info - reference to type of payload of the data-burst member
91 /// Sets data_type and pkt_offset, and length_code, out_bytes, out_buf if necessary
115 ctx->data_type = IEC61937_AC3 | (bitstream_mode << 8); in spdif_header_ac3()
143 ctx->data_type = IEC61937_EAC3; in spdif_header_eac3()
207 ctx->data_type = IEC61937_DTSHD | subtype << 8; in spdif_header_dts4()
298 case 512 >> 5: ctx->data_type = IEC61937_DTS1; break; in spdif_header_dts()
299 case 1024 >> 5: ctx->data_type = IEC61937_DTS2; break; in spdif_header_dts()
300 case 2048 >> 5: ctx->data_type = IEC61937_DTS3; break; in spdif_header_dts()
347 ctx->data_type in spdif_header_mpeg()
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles3/
H A Des3cCopyTexImageConversionsTests.cpp245 // in a data_type-friendly manner
257 ChannelDataType data_type; member
281 GLenum data_type; member
705 result.alpha.data_type = CHANNEL_DATA_TYPE_UNSIGNED_BYTE_8BITS; in getAlpha8OESPixelData()
706 result.blue.data_type = CHANNEL_DATA_TYPE_NONE; in getAlpha8OESPixelData()
707 result.green.data_type = CHANNEL_DATA_TYPE_NONE; in getAlpha8OESPixelData()
708 result.red.data_type = CHANNEL_DATA_TYPE_NONE; in getAlpha8OESPixelData()
710 result.data_type = type; in getAlpha8OESPixelData()
736 result.alpha.data_type = CHANNEL_DATA_TYPE_UNSIGNED_BYTE_8BITS; in getLuminance8OESPixelData()
738 result.blue.data_type in getLuminance8OESPixelData()
[all...]
/third_party/openssl/test/
H A Dparam_build_test.c36 || !TEST_uint_eq(p->data_type, OSSL_PARAM_UNSIGNED_INTEGER) in template_public_single_zero_test()
69 || !TEST_uint_eq(p->data_type, OSSL_PARAM_UNSIGNED_INTEGER) in template_private_single_zero_test()
143 || !TEST_uint_eq(p->data_type, OSSL_PARAM_INTEGER) in template_public_test()
150 || !TEST_uint_eq(p->data_type, OSSL_PARAM_INTEGER) in template_public_test()
156 || !TEST_uint_eq(p->data_type, OSSL_PARAM_INTEGER) in template_public_test()
163 || !TEST_uint_eq(p->data_type, OSSL_PARAM_INTEGER) in template_public_test()
170 || !TEST_uint_eq(p->data_type, OSSL_PARAM_INTEGER) in template_public_test()
178 || !TEST_uint_eq(p->data_type, OSSL_PARAM_REAL) in template_public_test()
193 || !TEST_uint_eq(p->data_type, OSSL_PARAM_UNSIGNED_INTEGER) in template_public_test()
199 || !TEST_uint_eq(p->data_type, OSSL_PARAM_UNSIGNED_INTEGE in template_public_test()
[all...]
/third_party/node/deps/openssl/openssl/crypto/
H A Dparams.c43 static OSSL_PARAM ossl_param_construct(const char *key, unsigned int data_type, in ossl_param_construct() argument
49 res.data_type = data_type; in ossl_param_construct()
170 if (p->data_type == OSSL_PARAM_INTEGER) in general_get_int()
172 if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) in general_get_int()
185 if (p->data_type == OSSL_PARAM_INTEGER) in general_set_int()
187 else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) in general_set_int()
196 if (p->data_type == OSSL_PARAM_INTEGER) in general_get_uint()
198 if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) in general_get_uint()
211 if (p->data_type in general_set_uint()
[all...]
H A Dparams_from_text.c49 switch (p->data_type) { in prepare_from_text()
60 if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER in prepare_from_text()
76 if (p->data_type == OSSL_PARAM_INTEGER && BN_is_negative(*tmpbn) in prepare_from_text()
93 if (p->data_type == OSSL_PARAM_INTEGER && buf_bits % 8 == 0) in prepare_from_text()
145 switch (paramdef->data_type) { in construct_from_text()
164 if (paramdef->data_type == OSSL_PARAM_INTEGER in construct_from_text()
/third_party/openssl/crypto/
H A Dparams.c41 static OSSL_PARAM ossl_param_construct(const char *key, unsigned int data_type, in ossl_param_construct() argument
47 res.data_type = data_type; in ossl_param_construct()
168 if (p->data_type == OSSL_PARAM_INTEGER) in general_get_int()
170 if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) in general_get_int()
183 if (p->data_type == OSSL_PARAM_INTEGER) in general_set_int()
185 else if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) in general_set_int()
194 if (p->data_type == OSSL_PARAM_INTEGER) in general_get_uint()
196 if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER) in general_get_uint()
209 if (p->data_type in general_set_uint()
[all...]
H A Dparams_from_text.c49 switch (p->data_type) { in prepare_from_text()
60 if (p->data_type == OSSL_PARAM_UNSIGNED_INTEGER in prepare_from_text()
76 if (p->data_type == OSSL_PARAM_INTEGER && BN_is_negative(*tmpbn) in prepare_from_text()
93 if (p->data_type == OSSL_PARAM_INTEGER && buf_bits % 8 == 0) in prepare_from_text()
139 switch (paramdef->data_type) { in construct_from_text()
158 if (paramdef->data_type == OSSL_PARAM_INTEGER in construct_from_text()
/third_party/mbedtls/tests/scripts/
H A Daudit-validity-dates.py55 def __init__(self, data_type: DataType, x509_obj):
56 self.data_type = data_type
76 if self.data_type == DataType.CRT:
81 elif self.data_type == DataType.CRL:
85 elif self.data_type == DataType.CSR:
89 raise ValueError("Unsupported file_type: {}".format(self.data_type))
111 def __generate_parser(self, data_type: DataType):
113 tag = self.PEM_TAGS[data_type]
114 pem_loader = self.backends[data_type][DataForma
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_atomics.cpp178 uint32_t data_type = 0; in AtomicsPass() local
180 if (!_.GetPointerTypeInfo(pointer_type, &data_type, &storage_class)) { in AtomicsPass()
187 if ( _.IsIntScalarType(data_type) &&_.GetBitWidth(data_type) == 64 && in AtomicsPass()
296 if (!_.IsIntScalarType(data_type) || _.GetBitWidth(data_type) != 32) { in AtomicsPass()
303 if (!_.IsFloatScalarType(data_type) && !_.IsIntScalarType(data_type)) { in AtomicsPass()
309 } else if (data_type != result_type) { in AtomicsPass()
357 if (value_type != data_type) { in AtomicsPass()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_atomics.cpp178 uint32_t data_type = 0; in AtomicsPass() local
180 if (!_.GetPointerTypeInfo(pointer_type, &data_type, &storage_class)) { in AtomicsPass()
187 if ( _.IsIntScalarType(data_type) &&_.GetBitWidth(data_type) == 64 && in AtomicsPass()
296 if (!_.IsIntScalarType(data_type) || _.GetBitWidth(data_type) != 32) { in AtomicsPass()
303 if (!_.IsFloatScalarType(data_type) && !_.IsIntScalarType(data_type)) { in AtomicsPass()
309 } else if (data_type != result_type) { in AtomicsPass()
357 if (value_type != data_type) { in AtomicsPass()
[all...]
/third_party/node/deps/openssl/openssl/providers/common/
H A Dprovider_util.c59 if (p->data_type != OSSL_PARAM_UTF8_STRING) in load_common()
72 if (p->data_type != OSSL_PARAM_UTF8_STRING) in load_common()
107 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_cipher_load_from_params()
192 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_digest_load_from_params()
240 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_set_macctx()
248 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_set_macctx()
256 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_set_macctx()
302 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_macctx_load_from_params()
308 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_macctx_load_from_params()
/third_party/openssl/providers/common/
H A Dprovider_util.c59 if (p->data_type != OSSL_PARAM_UTF8_STRING) in load_common()
72 if (p->data_type != OSSL_PARAM_UTF8_STRING) in load_common()
107 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_cipher_load_from_params()
192 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_digest_load_from_params()
240 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_set_macctx()
248 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_set_macctx()
256 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_set_macctx()
302 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_macctx_load_from_params()
308 if (p->data_type != OSSL_PARAM_UTF8_STRING) in ossl_prov_macctx_load_from_params()
/third_party/zlib/examples/
H A Dgznorm.c167 } while (strm.avail_out == 0 && (strm.data_type & 0x80) == 0); in gzip_normalize()
181 if (strm.data_type & 0x80) { in gzip_normalize()
209 // If strm.data_type & 0xc0 is 0x80, then the last byte of in gzip_normalize()
212 // also has strm.data_type & 0x1f bits of the next deflate in gzip_normalize()
213 // block, in the range 0..7. If strm.data_type & 0xc0 is in gzip_normalize()
215 // end of the deflate stream, followed by strm.data_type & in gzip_normalize()
225 int bits = strm.data_type & 0x1f; in gzip_normalize()
301 int mix = (strm.data_type & 0x80) && bits; in gzip_normalize()
332 if (strm.data_type & 0x40) { in gzip_normalize()
363 else if (strm.data_type in gzip_normalize()
[all...]
/third_party/astc-encoder/Source/
H A Dastcenccli_image.cpp44 img->data_type = ASTCENC_TYPE_U8; in alloc_image()
52 img->data_type = ASTCENC_TYPE_F16; in alloc_image()
61 img->data_type = ASTCENC_TYPE_F32; in alloc_image()
99 if (img->data_type == ASTCENC_TYPE_U8) in determine_image_components()
120 else if (img->data_type == ASTCENC_TYPE_F16) in determine_image_components()
142 else // if (img->data_type == ASTCENC_TYPE_F32) in determine_image_components()
144 assert(img->data_type == ASTCENC_TYPE_F32); in determine_image_components()
245 if (img->data_type == ASTCENC_TYPE_U8) in floatx4_array_from_astc_img()
262 else if (img->data_type == ASTCENC_TYPE_F16) in floatx4_array_from_astc_img()
284 else // if (img->data_type in floatx4_array_from_astc_img()
[all...]
/third_party/node/deps/openssl/openssl/providers/implementations/encode_decode/
H A Ddecode_pem2der.c106 const char *data_type; in pem2der_decode() member
182 char *data_type = (char *)pem_name_map[i].data_type; in pem2der_decode() local
186 if (data_type != NULL) in pem2der_decode()
189 data_type, 0); in pem2der_decode()
/third_party/openssl/providers/implementations/encode_decode/
H A Ddecode_pem2der.c106 const char *data_type; in pem2der_decode() member
182 char *data_type = (char *)pem_name_map[i].data_type; in pem2der_decode() local
186 if (data_type != NULL) in pem2der_decode()
189 data_type, 0); in pem2der_decode()
/third_party/PyYAML/lib/yaml/
H A Drepresenter.py50 for data_type in data_types:
51 if data_type in self.yaml_multi_representers:
52 node = self.yaml_multi_representers[data_type](self, data)
66 def add_representer(cls, data_type, representer):
69 cls.yaml_representers[data_type] = representer
72 def add_multi_representer(cls, data_type, representer):
75 cls.yaml_multi_representers[data_type] = representer
360 data_type = type(data)
362 % (data_type.__module__, data_type
[all...]
/third_party/spirv-tools/source/val/
H A Dvalidate_atomics.cpp177 uint32_t data_type = 0; in AtomicsPass() local
179 if (!_.GetPointerTypeInfo(pointer_type, &data_type, &storage_class)) { in AtomicsPass()
186 if (_.IsIntScalarType(data_type) && _.GetBitWidth(data_type) == 64 && in AtomicsPass()
296 if (!_.IsIntScalarType(data_type) || _.GetBitWidth(data_type) != 32) { in AtomicsPass()
303 if (!_.IsFloatScalarType(data_type) && !_.IsIntScalarType(data_type)) { in AtomicsPass()
309 } else if (data_type != result_type) { in AtomicsPass()
357 if (value_type != data_type) { in AtomicsPass()
[all...]
/third_party/ltp/metadata/
H A Ddata_storage.h14 enum data_type { enum
22 enum data_type type;
34 enum data_type type;
41 enum data_type type;
46 enum data_type type;
52 enum data_type type;
60 static inline const char* data_type_name(enum data_type type) in data_type_name()
/third_party/node/deps/openssl/openssl/crypto/ffc/
H A Dffc_backend.c39 if (prm->data_type != OSSL_PARAM_UTF8_STRING in ossl_ffc_params_fromdata()
79 if (prm->data_type != OSSL_PARAM_OCTET_STRING) in ossl_ffc_params_fromdata()
108 if (prm->data_type != OSSL_PARAM_UTF8_STRING) in ossl_ffc_params_fromdata()
112 if (p1->data_type != OSSL_PARAM_UTF8_STRING) in ossl_ffc_params_fromdata()
/third_party/node/deps/openssl/openssl/apps/lib/
H A Dapp_params.c20 switch (param->data_type) { in describe_param_type()
56 printed_len = BIO_snprintf(buf, bufsz, " [%d]", param->data_type); in describe_param_type()
103 switch (p->data_type) { in print_param_value()
128 p->data_type, p->data_size); in print_param_value()
/third_party/openssl/crypto/ffc/
H A Dffc_backend.c39 if (prm->data_type != OSSL_PARAM_UTF8_STRING in ossl_ffc_params_fromdata()
79 if (prm->data_type != OSSL_PARAM_OCTET_STRING) in ossl_ffc_params_fromdata()
108 if (prm->data_type != OSSL_PARAM_UTF8_STRING) in ossl_ffc_params_fromdata()
112 if (p1->data_type != OSSL_PARAM_UTF8_STRING) in ossl_ffc_params_fromdata()
/third_party/openssl/apps/lib/
H A Dapp_params.c20 switch (param->data_type) { in describe_param_type()
56 printed_len = BIO_snprintf(buf, bufsz, " [%d]", param->data_type); in describe_param_type()
103 switch (p->data_type) { in print_param_value()
128 p->data_type, p->data_size); in print_param_value()

Completed in 17 milliseconds

1234567891011