Home
last modified time | relevance | path

Searched refs:pval (Results 1 – 25 of 75) sorted by relevance

123

/external/rust/crates/quiche/deps/boringssl/src/crypto/asn1/
Dtasn_new.c70 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
72 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
74 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
86 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_new() argument
88 return asn1_item_ex_combine_new(pval, it, 0); in ASN1_item_ex_new()
91 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, in asn1_item_ex_combine_new() argument
116 if (!ef->asn1_ex_new(pval, it)) in asn1_item_ex_combine_new()
124 *pval = cf->asn1_new(); in asn1_item_ex_combine_new()
125 if (!*pval) in asn1_item_ex_combine_new()
[all …]
Dtasn_fre.c71 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_free() argument
73 asn1_item_combine_free(pval, it, 0); in ASN1_item_ex_free()
76 void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) in asn1_item_combine_free() argument
84 if (!pval) in asn1_item_combine_free()
86 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in asn1_item_combine_free()
97 ASN1_template_free(pval, it->templates); in asn1_item_combine_free()
99 ASN1_primitive_free(pval, it); in asn1_item_combine_free()
103 ASN1_primitive_free(pval, it); in asn1_item_combine_free()
108 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL); in asn1_item_combine_free()
112 i = asn1_get_choice_selector(pval, it); in asn1_item_combine_free()
[all …]
Dtasn_utl.c77 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) { in asn1_get_choice_selector() argument
78 int *sel = offset2ptr(*pval, it->utype); in asn1_get_choice_selector()
83 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, in asn1_set_choice_selector() argument
86 sel = offset2ptr(*pval, it->utype); in asn1_set_choice_selector()
92 static CRYPTO_refcount_t *asn1_get_references(ASN1_VALUE **pval, in asn1_get_references() argument
102 return offset2ptr(*pval, aux->ref_offset); in asn1_get_references()
105 void asn1_refcount_set_one(ASN1_VALUE **pval, const ASN1_ITEM *it) { in asn1_refcount_set_one() argument
106 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_set_one()
112 int asn1_refcount_dec_and_test_zero(ASN1_VALUE **pval, const ASN1_ITEM *it) { in asn1_refcount_dec_and_test_zero() argument
113 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_dec_and_test_zero()
[all …]
Dtasn_enc.c68 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
73 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
127 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, in ASN1_item_ex_i2d() argument
138 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in ASN1_item_ex_i2d()
148 return asn1_template_ex_i2d(pval, out, it->templates, in ASN1_item_ex_i2d()
150 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass); in ASN1_item_ex_i2d()
154 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass); in ASN1_item_ex_i2d()
157 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)) in ASN1_item_ex_i2d()
159 i = asn1_get_choice_selector(pval, it); in ASN1_item_ex_i2d()
164 pchval = asn1_get_field_ptr(pval, chtt); in ASN1_item_ex_i2d()
[all …]
Dtasn_dec.c90 static int asn1_template_ex_d2i(ASN1_VALUE **pval,
98 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval,
145 ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, in ASN1_item_d2i() argument
151 if (!pval) in ASN1_item_d2i()
152 pval = &ptmpval; in ASN1_item_d2i()
154 if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) in ASN1_item_d2i()
155 return *pval; in ASN1_item_d2i()
164 static int asn1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, in asn1_item_ex_d2i() argument
184 if (!pval) in asn1_item_ex_d2i()
218 return asn1_template_ex_d2i(pval, in, len, in asn1_item_ex_d2i()
[all …]
/external/boringssl/src/crypto/asn1/
Dtasn_new.c70 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
72 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 static int ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
74 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
75 static int ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
76 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
88 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_new() argument
90 return asn1_item_ex_combine_new(pval, it, 0); in ASN1_item_ex_new()
93 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, in asn1_item_ex_combine_new() argument
112 if (!ef->asn1_ex_new(pval, it)) in asn1_item_ex_combine_new()
[all …]
Dtasn_fre.c73 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it) in ASN1_item_ex_free() argument
75 asn1_item_combine_free(pval, it, 0); in ASN1_item_ex_free()
78 void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine) in asn1_item_combine_free() argument
85 if (!pval) in asn1_item_combine_free()
87 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in asn1_item_combine_free()
98 ASN1_template_free(pval, it->templates); in asn1_item_combine_free()
100 ASN1_primitive_free(pval, it); in asn1_item_combine_free()
104 ASN1_primitive_free(pval, it); in asn1_item_combine_free()
109 i = asn1_cb(ASN1_OP_FREE_PRE, pval, it, NULL); in asn1_item_combine_free()
113 i = asn1_get_choice_selector(pval, it); in asn1_item_combine_free()
[all …]
Dtasn_utl.c78 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it) { in asn1_get_choice_selector() argument
79 int *sel = offset2ptr(*pval, it->utype); in asn1_get_choice_selector()
84 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, in asn1_set_choice_selector() argument
87 sel = offset2ptr(*pval, it->utype); in asn1_set_choice_selector()
93 static CRYPTO_refcount_t *asn1_get_references(ASN1_VALUE **pval, in asn1_get_references() argument
102 return offset2ptr(*pval, aux->ref_offset); in asn1_get_references()
105 void asn1_refcount_set_one(ASN1_VALUE **pval, const ASN1_ITEM *it) { in asn1_refcount_set_one() argument
106 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_set_one()
112 int asn1_refcount_dec_and_test_zero(ASN1_VALUE **pval, const ASN1_ITEM *it) { in asn1_refcount_dec_and_test_zero() argument
113 CRYPTO_refcount_t *references = asn1_get_references(pval, it); in asn1_refcount_dec_and_test_zero()
[all …]
Dasn1_locl.h93 void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it,
99 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
100 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
102 void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
103 int ASN1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len,
107 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
109 void ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
111 int asn1_get_choice_selector(ASN1_VALUE **pval, const ASN1_ITEM *it);
112 int asn1_set_choice_selector(ASN1_VALUE **pval, int value, const ASN1_ITEM *it);
114 ASN1_VALUE **asn1_get_field_ptr(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
[all …]
Dtasn_enc.c69 static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
71 static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype,
76 static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
123 int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out, in ASN1_item_ex_i2d() argument
132 if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval) in ASN1_item_ex_i2d()
142 return asn1_template_ex_i2d(pval, out, it->templates, in ASN1_item_ex_i2d()
144 return asn1_i2d_ex_primitive(pval, out, it, tag, aclass); in ASN1_item_ex_i2d()
156 return asn1_i2d_ex_primitive(pval, out, it, -1, aclass); in ASN1_item_ex_i2d()
167 if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL)) in ASN1_item_ex_i2d()
169 i = asn1_get_choice_selector(pval, it); in ASN1_item_ex_i2d()
[all …]
Dtasn_dec.c91 static int asn1_template_ex_d2i(ASN1_VALUE **pval,
99 static int asn1_ex_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len,
101 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval,
148 ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, in ASN1_item_d2i() argument
154 if (!pval) in ASN1_item_d2i()
155 pval = &ptmpval; in ASN1_item_d2i()
157 if (ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) in ASN1_item_d2i()
158 return *pval; in ASN1_item_d2i()
167 static int asn1_item_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, in asn1_item_ex_d2i() argument
184 if (!pval) in asn1_item_ex_d2i()
[all …]
/external/libxml2/result/
Datt6.sax29pval...', 47, schemeAgencyID='pval...', 53, schemeVersionID='pval...', 54, schemeAgencySchemeID='p…
/external/libxml2/result/noent/
Datt6.sax29pval...', 47, schemeAgencyID='pval...', 53, schemeVersionID='pval...', 54, schemeAgencySchemeID='p…
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dasn1t.h607 typedef int ASN1_ex_d2i(ASN1_VALUE **pval, const unsigned char **in, long len, const ASN1_ITEM *it,
610 typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int a…
611 typedef int ASN1_ex_new_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
612 typedef void ASN1_ex_free_func(ASN1_VALUE **pval, const ASN1_ITEM *it);
614 typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval,
618 typedef int ASN1_primitive_i2c(ASN1_VALUE **pval, unsigned char *cont, int *putype, const ASN1_ITEM…
619 typedef int ASN1_primitive_c2i(ASN1_VALUE **pval, const unsigned char *cont, int len, int utype, ch…
620 typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, cons…
859 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
860 void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it);
[all …]
/external/llvm/test/Transforms/CorrelatedValuePropagation/
Dselect.ll79 %pval = load i32, i32* %p
80 %cmp1 = icmp slt i32 %pval, 255
84 %min = select i1 %unknown, i32 %pval, i32 5
102 %pval = load i32, i32* %p
103 %cmp1 = icmp slt i32 %pval, 255
107 %min = select i1 %unknown, i32 %pval, i32 %qval
125 %pval = load i32, i32* %p
126 %cmp1 = icmp slt i32 %pval, 255
130 %min = select i1 %unknown, i32 %qval, i32 %pval
151 %pval = load i32, i32* %p
[all …]
/external/llvm-project/llvm/test/Transforms/CorrelatedValuePropagation/
Dselect.ll116 %pval = load i32, i32* %p
117 %cmp1 = icmp slt i32 %pval, 255
121 %min = select i1 %unknown, i32 %pval, i32 5
142 %pval = load i32, i32* %p
143 %cmp1 = icmp slt i32 %pval, 255
147 %min = select i1 %unknown, i32 %pval, i32 %qval
168 %pval = load i32, i32* %p
169 %cmp1 = icmp slt i32 %pval, 255
173 %min = select i1 %unknown, i32 %qval, i32 %pval
197 %pval = load i32, i32* %p
[all …]
/external/libvpx/libvpx/vp8/encoder/
Dtemporal_filter.c294 unsigned int pval = accumulator[k] + (count[k] >> 1); in vp8_temporal_filter_iterate_c() local
295 pval *= cpi->fixed_divide[count[k]]; in vp8_temporal_filter_iterate_c()
296 pval >>= 19; in vp8_temporal_filter_iterate_c()
298 dst1[byte] = (unsigned char)pval; in vp8_temporal_filter_iterate_c()
316 unsigned int pval = accumulator[k] + (count[k] >> 1); in vp8_temporal_filter_iterate_c() local
317 pval *= cpi->fixed_divide[count[k]]; in vp8_temporal_filter_iterate_c()
318 pval >>= 19; in vp8_temporal_filter_iterate_c()
319 dst1[byte] = (unsigned char)pval; in vp8_temporal_filter_iterate_c()
322 pval = accumulator[m] + (count[m] >> 1); in vp8_temporal_filter_iterate_c()
323 pval *= cpi->fixed_divide[count[m]]; in vp8_temporal_filter_iterate_c()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_temporal_filter.c862 unsigned int pval = accumulator[k] + (count[k] >> 1); in vp9_temporal_filter_iterate_row_c() local
863 pval *= fixed_divide[count[k]]; in vp9_temporal_filter_iterate_row_c()
864 pval >>= 19; in vp9_temporal_filter_iterate_row_c()
866 dst1_16[byte] = (uint16_t)pval; in vp9_temporal_filter_iterate_row_c()
886 unsigned int pval = accumulator[k] + (count[k] >> 1); in vp9_temporal_filter_iterate_row_c() local
887 pval *= fixed_divide[count[k]]; in vp9_temporal_filter_iterate_row_c()
888 pval >>= 19; in vp9_temporal_filter_iterate_row_c()
889 dst1_16[byte] = (uint16_t)pval; in vp9_temporal_filter_iterate_row_c()
892 pval = accumulator[m] + (count[m] >> 1); in vp9_temporal_filter_iterate_row_c()
893 pval *= fixed_divide[count[m]]; in vp9_temporal_filter_iterate_row_c()
[all …]
/external/yapf/yapf/yapflib/
Dunwrapped_line.py392 pval = prev_token.value
395 if pval == 'yield' and cval == 'from':
398 if pval in {'async', 'await'} and cval in {'def', 'with', 'for'}:
403 if pval == '@':
468 pval = prev_token.value
470 if pval == 'not':
478 if pval in _LOGICAL_OPERATORS:
484 if pval in _LOGICAL_OPERATORS:
491 if pval in _BITWISE_OPERATORS:
497 if pval in _BITWISE_OPERATORS:
[all …]
/external/llvm-project/polly/test/ScopInfo/
Dmultidim_parameter_addrec_product.ll12 ; CHECK-NEXT: [pval] -> { Stmt_bb5[i0, i1] -> MemRef_p[0] };
13 ; CHECK-NEXT: Execution Context: [pval] -> { : }
17 ; CHECK: [pval] -> { Stmt_bb5[i0, i1] -> MemRef_A[i0, i1] };
19 ; CHECK: [pval] -> { Stmt_bb5[i0, i1] -> MemRef_A[i0, i1] };
43 %pval = load i64, i64* %p, align 8
44 %tmp8 = mul nsw i64 %i.0, %pval
/external/clang/test/Analysis/
Dcasts.c34 void f1(struct s **pval) { in f1() argument
36 struct s *t = *pval; in f1()
37 pval = &(t->value); in f1()
38 tbool = (int *)pval; // use the cast-to type 'int *' to create element region. in f1()
/external/iproute2/tc/
Dm_gact.c118 if (get_u16(&pp.pval, *argv, 10)) { in parse_gact()
119 fprintf(stderr, "Illegal probability val 0x%x\n", pp.pval); in parse_gact()
122 if (pp.pval > 10000) { in parse_gact()
123 fprintf(stderr, "Illegal probability val 0x%x\n", pp.pval); in parse_gact()
196 fprintf(f, "val %d", pp->pval); in print_gact()
/external/tinyalsa/include/tinyalsa/
Dmixer_plugin.h159 #define INIT_SND_CONTROL_INTEGER(c, cname, cget, cput, cint, pval, pdata) \ argument
165 c->private_value = pval; c->private_data = pdata; \
168 #define INIT_SND_CONTROL_BYTES(c, cname, cget, cput, cint, pval, pdata) \ argument
174 c->private_value = pval; c->private_data = pdata; \
177 #define INIT_SND_CONTROL_ENUM(c, cname, cget, cput, cenum, pval, pdata) \ argument
183 c->private_value = pval; c->private_data = pdata; \
/external/tinyalsa_new/include/tinyalsa/
Dplugin.h56 #define INIT_SND_CONTROL_INTEGER(c, cname, cget, cput, cint, pval, pdata) \ argument
62 c->private_value = pval; c->private_data = pdata; \
65 #define INIT_SND_CONTROL_BYTES(c, cname, cget, cput, cint, pval, pdata) \ argument
71 c->private_value = pval; c->private_data = pdata; \
74 #define INIT_SND_CONTROL_ENUM(c, cname, cget, cput, cenum, pval, pdata) \ argument
80 c->private_value = pval; c->private_data = pdata; \
/external/ppp/pppd/plugins/radius/
Davpair.c34 VALUE_PAIR *rc_avpair_add (VALUE_PAIR **list, int attrid, void *pval, int len, in rc_avpair_add() argument
39 vp = rc_avpair_new (attrid, pval, len, vendorcode); in rc_avpair_add()
60 int rc_avpair_assign (VALUE_PAIR *vp, void *pval, int len) in rc_avpair_assign() argument
68 if (((len == 0) && (strlen ((char *) pval)) > AUTH_STRING_LEN) in rc_avpair_assign()
75 memcpy(vp->strvalue, (char *)pval, len); in rc_avpair_assign()
79 strncpy (vp->strvalue, (char *) pval, AUTH_STRING_LEN); in rc_avpair_assign()
80 vp->lvalue = strlen((char *) pval); in rc_avpair_assign()
90 vp->lvalue = * (UINT4 *) pval; in rc_avpair_assign()
110 VALUE_PAIR *rc_avpair_new (int attrid, void *pval, int len, int vendorcode) in rc_avpair_new() argument
129 if (rc_avpair_assign (vp, pval, len) == 0) in rc_avpair_new()

123