Home
last modified time | relevance | path

Searched refs:n_str (Results 1 – 13 of 13) sorted by relevance

/external/boringssl/src/fipstools/
Dcavp_ecdsa2_keypair_test.cc33 std::string n_str; in TestECDSA2KeyPair() local
37 !t->GetAttribute(&n_str, "N")) { in TestECDSA2KeyPair()
46 unsigned long n = strtoul(n_str.c_str(), nullptr, 10); in TestECDSA2KeyPair()
/external/python/cpython2/Include/
Dnode.h12 char *n_str; member
31 #define STR(n) ((n)->n_str)
/external/python/cpython3/Include/
Dnode.h12 char *n_str; member
33 #define STR(n) ((n)->n_str)
/external/python/cpython2/Parser/
Dnode.c14 n->n_str = NULL; in PyNode_New()
107 n->n_str = str; in PyNode_AddChild()
Dparsetok.c252 r->n_str = PyObject_MALLOC(strlen(tok->encoding)+1); in parsetok()
253 if (!r || !r->n_str) { in parsetok()
260 strcpy(r->n_str, tok->encoding); in parsetok()
Dpgen.c189 nf = addnfa(gr, n->n_str); in compile_rule()
312 addnfaarc(nf, *pa, *pb, addlabel(ll, n->n_type, n->n_str)); in compile_atom()
/external/python/cpython3/Parser/
Dnode.c14 n->n_str = NULL; in PyNode_New()
107 n->n_str = str; in PyNode_AddChild()
Dparsetok.c339 r->n_str = PyObject_MALLOC(strlen(tok->encoding)+1); in parsetok()
340 if (!r || !r->n_str) { in parsetok()
347 strcpy(r->n_str, tok->encoding); in parsetok()
Dpgen.c188 nf = addnfa(gr, n->n_str); in compile_rule()
311 addnfaarc(nf, *pa, *pb, addlabel(ll, n->n_type, n->n_str)); in compile_atom()
/external/libxml2/
Dtestapi.c2443 int n_str; in test_htmlParseEntityRef() local
2446 for (n_str = 0;n_str < gen_nb_const_xmlChar_ptr_ptr;n_str++) { in test_htmlParseEntityRef()
2449 str = gen_const_xmlChar_ptr_ptr(n_str, 1); in test_htmlParseEntityRef()
2455 des_const_xmlChar_ptr_ptr(n_str, (const xmlChar **)str, 1); in test_htmlParseEntityRef()
2462 printf(" %d", n_str); in test_htmlParseEntityRef()
7411 int n_str; in test_xmlDebugDumpString() local
7414 for (n_str = 0;n_str < gen_nb_const_xmlChar_ptr;n_str++) { in test_xmlDebugDumpString()
7417 str = gen_const_xmlChar_ptr(n_str, 1); in test_xmlDebugDumpString()
7422 des_const_xmlChar_ptr(n_str, (const xmlChar *)str, 1); in test_xmlDebugDumpString()
7429 printf(" %d", n_str); in test_xmlDebugDumpString()
[all …]
/external/python/cpython3/Modules/
Dparsermodule.c1018 res->n_str = (char *)PyObject_MALLOC(len + 1); in build_node_tree()
1019 if (res->n_str == NULL) { in build_node_tree()
1026 (void) memcpy(res->n_str, temp, len + 1); in build_node_tree()
/external/python/cpython2/Modules/
Dparsermodule.c928 res->n_str = (char *)PyObject_MALLOC(len); in build_node_tree()
929 if (res->n_str == NULL) { in build_node_tree()
936 (void) memcpy(res->n_str, PyString_AS_STRING(encoding), len); in build_node_tree()
/external/python/cpython3/Python/
Dast.c4276 if (parent && parent->n_str) { in fstring_fix_node_location()
4277 substr = strstr(parent->n_str, expr_str); in fstring_fix_node_location()
4280 while (start > parent->n_str) { in fstring_fix_node_location()