Home
last modified time | relevance | path

Searched refs:itype (Results 1 - 25 of 88) sorted by relevance

1234

/third_party/ffmpeg/libavcodec/
H A Drv34.c967 static void rv34_pred_4x4_block(RV34DecContext *r, uint8_t *dst, int stride, int itype, int up, int left, int down, int right) in rv34_pred_4x4_block() argument
973 itype = DC_128_PRED; in rv34_pred_4x4_block()
975 if(itype == VERT_PRED) itype = HOR_PRED; in rv34_pred_4x4_block()
976 if(itype == DC_PRED) itype = LEFT_DC_PRED; in rv34_pred_4x4_block()
978 if(itype == HOR_PRED) itype = VERT_PRED; in rv34_pred_4x4_block()
979 if(itype == DC_PRED) itype in rv34_pred_4x4_block()
994 adjust_pred16(int itype, int up, int left) adjust_pred16() argument
1035 int i, j, itype, has_ac; rv34_output_i16x16() local
1138 int itype = ittrans[intra_types[i*2+j*2*r->intra_types_stride]]; rv34_output_intra() local
[all...]
/third_party/ffmpeg/libavresample/
H A Daudio_convert.c143 #define CONV_FUNC_FLAT(ofmt, otype, ifmt, itype, expr) \
147 int is = sizeof(itype); \
155 #define CONV_FUNC_INTERLEAVE(ofmt, otype, ifmt, itype, expr) \
161 int is = sizeof(itype); \
171 #define CONV_FUNC_DEINTERLEAVE(ofmt, otype, ifmt, itype, expr) \
176 int in_bps = sizeof(itype); \
187 #define CONV_FUNC_GROUP(ofmt, otype, ifmt, itype, expr) \
188 CONV_FUNC_FLAT( ofmt, otype, ifmt, itype, expr) \
189 CONV_FUNC_INTERLEAVE( ofmt, otype, ifmt ## P, itype, expr) \
190 CONV_FUNC_DEINTERLEAVE(ofmt ## P, otype, ifmt, itype, exp
[all...]
/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Da_int.c327 static int asn1_string_get_int64(int64_t *pr, const ASN1_STRING *a, int itype) in asn1_string_get_int64() argument
333 if ((a->type & ~V_ASN1_NEG) != itype) { in asn1_string_get_int64()
340 static int asn1_string_set_int64(ASN1_STRING *a, int64_t r, int itype) in asn1_string_set_int64() argument
345 a->type = itype; in asn1_string_set_int64()
362 int itype) in asn1_string_get_uint64()
368 if ((a->type & ~V_ASN1_NEG) != itype) { in asn1_string_get_uint64()
379 static int asn1_string_set_uint64(ASN1_STRING *a, uint64_t r, int itype) in asn1_string_set_uint64() argument
384 a->type = itype; in asn1_string_set_uint64()
506 int itype) in asn1_string_to_bn()
510 if ((ai->type & ~V_ASN1_NEG) != itype) { in asn1_string_to_bn()
361 asn1_string_get_uint64(uint64_t *pr, const ASN1_STRING *a, int itype) asn1_string_get_uint64() argument
505 asn1_string_to_bn(const ASN1_INTEGER *ai, BIGNUM *bn, int itype) asn1_string_to_bn() argument
[all...]
H A Da_dup.c65 if (it->itype == ASN1_ITYPE_SEQUENCE || it->itype == ASN1_ITYPE_CHOICE in ASN1_item_dup()
66 || it->itype == ASN1_ITYPE_NDEF_SEQUENCE) { in ASN1_item_dup()
H A Dtasn_new.c74 switch (it->itype) { in asn1_item_embed_new()
178 switch (it->itype) { in asn1_item_clear()
283 if (it->itype == ASN1_ITYPE_MSTRING) in asn1_primitive_new()
320 if (it->itype == ASN1_ITYPE_MSTRING && str) in asn1_primitive_new()
340 if (!it || (it->itype == ASN1_ITYPE_MSTRING)) in asn1_primitive_clear()
H A Dtasn_fre.c38 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL) in ossl_asn1_item_embed_free()
45 switch (it->itype) { in ossl_asn1_item_embed_free()
173 } else if (it->itype == ASN1_ITYPE_MSTRING) { in ossl_asn1_primitive_free()
H A Dtasn_enc.c92 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL) in ASN1_item_ex_i2d()
100 switch (it->itype) { in ASN1_item_ex_i2d()
544 if ((it->itype != ASN1_ITYPE_PRIMITIVE) in asn1_ex_i2c()
550 if (it->itype == ASN1_ITYPE_MSTRING) { in asn1_ex_i2c()
H A Dtasn_prn.c154 if (((it->itype != ASN1_ITYPE_PRIMITIVE) in asn1_item_print_ctx()
165 switch (it->itype) { in asn1_item_print_ctx()
257 BIO_printf(out, "Unprocessed type %d\n", it->itype); in asn1_item_print_ctx()
448 if (it->itype == ASN1_ITYPE_MSTRING) { in asn1_primitive_print()
H A Dtasn_utl.c75 if ((it->itype != ASN1_ITYPE_SEQUENCE) in ossl_asn1_do_lock()
76 && (it->itype != ASN1_ITYPE_NDEF_SEQUENCE)) in ossl_asn1_do_lock()
H A Dtasn_dec.c200 switch (it->itype) { in asn1_item_embed_d2i()
716 if (it->itype == ASN1_ITYPE_MSTRING) { in asn1_d2i_ex_primitive()
/third_party/openssl/crypto/asn1/
H A Da_int.c327 static int asn1_string_get_int64(int64_t *pr, const ASN1_STRING *a, int itype) in asn1_string_get_int64() argument
333 if ((a->type & ~V_ASN1_NEG) != itype) { in asn1_string_get_int64()
340 static int asn1_string_set_int64(ASN1_STRING *a, int64_t r, int itype) in asn1_string_set_int64() argument
345 a->type = itype; in asn1_string_set_int64()
362 int itype) in asn1_string_get_uint64()
368 if ((a->type & ~V_ASN1_NEG) != itype) { in asn1_string_get_uint64()
379 static int asn1_string_set_uint64(ASN1_STRING *a, uint64_t r, int itype) in asn1_string_set_uint64() argument
384 a->type = itype; in asn1_string_set_uint64()
506 int itype) in asn1_string_to_bn()
510 if ((ai->type & ~V_ASN1_NEG) != itype) { in asn1_string_to_bn()
361 asn1_string_get_uint64(uint64_t *pr, const ASN1_STRING *a, int itype) asn1_string_get_uint64() argument
505 asn1_string_to_bn(const ASN1_INTEGER *ai, BIGNUM *bn, int itype) asn1_string_to_bn() argument
[all...]
H A Da_dup.c65 if (it->itype == ASN1_ITYPE_SEQUENCE || it->itype == ASN1_ITYPE_CHOICE in ASN1_item_dup()
66 || it->itype == ASN1_ITYPE_NDEF_SEQUENCE) { in ASN1_item_dup()
H A Dtasn_new.c74 switch (it->itype) { in asn1_item_embed_new()
178 switch (it->itype) { in asn1_item_clear()
283 if (it->itype == ASN1_ITYPE_MSTRING) in asn1_primitive_new()
320 if (it->itype == ASN1_ITYPE_MSTRING && str) in asn1_primitive_new()
340 if (!it || (it->itype == ASN1_ITYPE_MSTRING)) in asn1_primitive_clear()
H A Dtasn_fre.c38 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL) in ossl_asn1_item_embed_free()
45 switch (it->itype) { in ossl_asn1_item_embed_free()
173 } else if (it->itype == ASN1_ITYPE_MSTRING) { in ossl_asn1_primitive_free()
H A Dtasn_enc.c92 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && *pval == NULL) in ASN1_item_ex_i2d()
100 switch (it->itype) { in ASN1_item_ex_i2d()
544 if ((it->itype != ASN1_ITYPE_PRIMITIVE) in asn1_ex_i2c()
550 if (it->itype == ASN1_ITYPE_MSTRING) { in asn1_ex_i2c()
H A Dtasn_prn.c154 if (((it->itype != ASN1_ITYPE_PRIMITIVE) in asn1_item_print_ctx()
165 switch (it->itype) { in asn1_item_print_ctx()
257 BIO_printf(out, "Unprocessed type %d\n", it->itype); in asn1_item_print_ctx()
448 if (it->itype == ASN1_ITYPE_MSTRING) { in asn1_primitive_print()
H A Dtasn_utl.c75 if ((it->itype != ASN1_ITYPE_SEQUENCE) in ossl_asn1_do_lock()
76 && (it->itype != ASN1_ITYPE_NDEF_SEQUENCE)) in ossl_asn1_do_lock()
H A Dtasn_dec.c200 switch (it->itype) { in asn1_item_embed_d2i()
716 if (it->itype == ASN1_ITYPE_MSTRING) { in asn1_d2i_ex_primitive()
/third_party/elfutils/backends/
H A Dlinux-core-note.c140 #define FIELD(igroup, itype, item, fmt, ...) \
145 .type = TYPE_##itype, \
176 #define FIELD(igroup, itype, item, fmt, ...) \
181 .type = TYPE_##itype, \
/third_party/mesa3d/src/compiler/nir/
H A Dnir_gather_xfb_info.c245 const struct glsl_type *itype = var->interface_type; in nir_gather_xfb_info_with_varyings() local
246 unsigned nfields = glsl_get_length(itype); in nir_gather_xfb_info_with_varyings()
249 int foffset = glsl_get_struct_field_offset(itype, f); in nir_gather_xfb_info_with_varyings()
250 const struct glsl_type *ftype = glsl_get_struct_field(itype, f); in nir_gather_xfb_info_with_varyings()
/third_party/ltp/tools/sparse/sparse-src/
H A Dsimplify.c888 size = insn->itype->bit_size; in eval_insn()
1131 insn->itype = def->itype; in simplify_seteq_setne()
1148 insn->itype = def->orig_type; in simplify_seteq_setne()
1172 unsigned size = insn->itype->bit_size; in simplify_compare_constant()
1388 insn->itype = def->orig_type; in simplify_compare_constant()
1395 insn->itype = def->orig_type; in simplify_compare_constant()
1402 insn->itype = def->orig_type; in simplify_compare_constant()
1426 insn->itype = def->orig_type; in simplify_compare_constant()
1442 insn->itype in simplify_compare_constant()
[all...]
H A Dlinearize.h134 struct symbol *itype; // input operands' type member
H A Dlinearize.c1068 static pseudo_t add_cmp_op(struct entrypoint *ep, struct symbol *ctype, int op, struct symbol *itype, pseudo_t left, pseudo_t right) in add_cmp_op() argument
1071 target->def->itype = itype; in add_cmp_op()
1768 struct symbol *itype = expr->right->ctype; in linearize_compare() local
1769 int op = opcode_float(cmpop[expr->op], itype); in linearize_compare()
1772 pseudo_t dst = add_cmp_op(ep, expr->ctype, op, itype, src1, src2); in linearize_compare()
2634 insn->itype = &int_ctype; in linearize_isdigit()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_instr_export.cpp470 auto itype = type_lookop.find(type_str);
471 assert(itype != type_lookop.end());
473 auto type = itype->second;
/third_party/openssl/test/
H A Dendecode_test.c576 int itype = NID_undef; in check_params_DER() local
580 itype = EVP_PKEY_DH; in check_params_DER()
582 itype = EVP_PKEY_DHX; in check_params_DER()
584 itype = EVP_PKEY_DSA; in check_params_DER()
586 itype = EVP_PKEY_EC; in check_params_DER()
588 if (itype != NID_undef) { in check_params_DER()
589 pkey = d2i_KeyParams(itype, NULL, &datap, data_len); in check_params_DER()

Completed in 25 milliseconds

1234