Home
last modified time | relevance | path

Searched refs:name_idx (Results 1 – 10 of 10) sorted by relevance

/third_party/openssl/crypto/property/
Dproperty_parse.c262 if (pd1->name_idx < pd2->name_idx) in pd_compare()
264 if (pd1->name_idx > pd2->name_idx) in pd_compare()
300 if (i > 0 && r->properties[i].name_idx == prev_name_idx) { in stack_to_property_list()
307 prev_name_idx = r->properties[i].name_idx; in stack_to_property_list()
335 if (!parse_name(ctx, &s, 1, &prop->name_idx)) in ossl_parse_property()
338 if (prop->name_idx == 0) { in ossl_parse_property()
395 if (!parse_name(ctx, &s, 1, &prop->name_idx)) in ossl_parse_query()
400 if (!parse_name(ctx, &s, 1, &prop->name_idx)) in ossl_parse_query()
454 if (q[i].name_idx > d[j].name_idx) { /* skip defn, not in query */ in ossl_property_match_count()
458 if (q[i].name_idx == d[j].name_idx) { /* both in defn and query */ in ossl_property_match_count()
[all …]
Dproperty_query.c20 return key - defn->name_idx; in property_idx_cmp()
27 OSSL_PROPERTY_IDX name_idx; in ossl_property_find_property() local
30 || (name_idx = ossl_property_name(libctx, name, 0)) == 0) in ossl_property_find_property()
33 return ossl_bsearch(&name_idx, list->properties, list->num_properties, in ossl_property_find_property()
Dproperty_local.h21 OSSL_PROPERTY_IDX name_idx; member
/third_party/node/deps/openssl/openssl/crypto/property/
Dproperty_parse.c292 if (pd1->name_idx < pd2->name_idx) in pd_compare()
294 if (pd1->name_idx > pd2->name_idx) in pd_compare()
330 if (i > 0 && r->properties[i].name_idx == prev_name_idx) { in stack_to_property_list()
337 prev_name_idx = r->properties[i].name_idx; in stack_to_property_list()
365 if (!parse_name(ctx, &s, 1, &prop->name_idx)) in ossl_parse_property()
368 if (prop->name_idx == 0) { in ossl_parse_property()
425 if (!parse_name(ctx, &s, 1, &prop->name_idx)) in ossl_parse_query()
430 if (!parse_name(ctx, &s, 1, &prop->name_idx)) in ossl_parse_query()
484 if (q[i].name_idx > d[j].name_idx) { /* skip defn, not in query */ in ossl_property_match_count()
488 if (q[i].name_idx == d[j].name_idx) { /* both in defn and query */ in ossl_property_match_count()
[all …]
Dproperty_query.c20 return key - defn->name_idx; in property_idx_cmp()
27 OSSL_PROPERTY_IDX name_idx; in ossl_property_find_property() local
30 || (name_idx = ossl_property_name(libctx, name, 0)) == 0) in ossl_property_find_property()
33 return ossl_bsearch(&name_idx, list->properties, list->num_properties, in ossl_property_find_property()
Dproperty_local.h21 OSSL_PROPERTY_IDX name_idx; member
/third_party/python/Objects/stringlib/
Dunicode_format.h272 Py_ssize_t *name_idx, SubString *name) in FieldNameIterator_next() argument
283 *name_idx = -1; in FieldNameIterator_next()
289 *name_idx = get_integer(name); in FieldNameIterator_next()
290 if (*name_idx == -1 && PyErr_Occurred()) in FieldNameIterator_next()
/third_party/mesa3d/src/intel/perf/
Dintel_perf_setup.h76 uint16_t name_idx; member
/third_party/python/Modules/
D_operator.c1296 Py_ssize_t name_idx = 0, name_count; in dotted_getattr() local
1301 for (name_idx = 0; name_idx < name_count; ++name_idx) { in dotted_getattr()
1302 attr_name = PyTuple_GET_ITEM(attr, name_idx); in dotted_getattr()
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dconsistency_tools.py271 name_idx = text_parts.index(param_name)
272 if name_idx - type_idx == 1: