| /src/usr.bin/make/ |
| trace.c | 105 GNode *gn = Job_Node(job); local 106 char *type = GNodeType_ToString(gn->type); 110 gn->name, Job_Pid(job), flags, type);
|
| compat.c | 108 CompatDeleteTarget(GNode *gn) 110 if (!GNode_IsPrecious(gn) && 111 (gn->type & OP_PHONY) == 0) { 112 const char *file = GNode_VarTarget(gn); 133 GNode *gn = Targ_FindNode(".INTERRUPT"); local 134 if (gn != NULL) 135 Compat_Make(gn, gn); 156 DebugFailedTarget(const char *cmd, const GNode *gn) 160 gn->name) 702 GNode *gn = Targ_FindNode(".BEGIN"); local 753 GNode *gn = Lst_Dequeue(targets); local [all...] |
| targ.c | 183 GNode *gn; local 185 gn = bmake_malloc(sizeof *gn); 186 gn->name = bmake_strdup(name); 187 gn->uname = NULL; 188 gn->path = NULL; 189 gn->type = name[0] == '-' && name[1] == 'l' ? OP_LIB : OP_NONE; 190 memset(&gn->flags, 0, sizeof(gn->flags)); 191 gn->made = UNMADE 279 GNode *gn = Targ_NewInternalNode(name); local 294 GNode *gn = GNode_New(name); local 331 GNode *gn = Targ_GetNode(name); local 342 GNode *gn = ln->datum; local 532 GNode *gn = ln->datum; local 589 GNode *gn = ln->datum; local [all...] |
| arch.c | 192 GNode *gn; /* New node */ local 311 gn = Targ_GetNode(fullName); 312 gn->type |= OP_ARCHV; 313 Lst_Append(gns, gn); 333 gn = Targ_GetNode(fullname); 336 gn->type |= OP_ARCHV; 337 Lst_Append(gns, gn); 343 gn = Targ_GetNode(fullname); 346 gn->type |= OP_ARCHV; 347 Lst_Append(gns, gn); [all...] |
| make.c | 199 GNode_FprintDetails(FILE *f, const char *prefix, const GNode *gn, 202 char *type = GNodeType_ToString(gn->type); 203 char *flags = GNodeFlags_ToString(gn->flags); 206 prefix, GNodeMade_Name(gn->made), type, flags, suffix); 212 GNode_ShouldExecute(GNode *gn) 214 return !(gn->type & OP_MAKE 221 GNode_UpdateYoungestChild(GNode *gn, GNode *cgn) 223 if (gn->youngestChild == NULL || cgn->mtime > gn->youngestChild->mtime) 224 gn->youngestChild = cgn 437 GNode *gn = ln->datum; local 1015 GNode *gn; local 1215 GNode *gn = ln->datum; local 1246 GNode *gn = Lst_Dequeue(&examine); local 1310 GNode *gn = ln->datum; local [all...] |
| suff.c | 350 GNode *gn = ln->datum; local 351 if (strcmp(gn->name, name) == 0) 352 return gn; 573 GNode *gn = FindTransformByName(name); local 574 if (gn == NULL) { 579 gn = GNode_New(name); 580 Lst_Append(&transforms, gn); 589 Lst_Done(&gn->commands); 590 Lst_Init(&gn->commands); 591 Lst_Done(&gn->children) 797 GNode *gn = ln->datum; local 1217 GNode *gn; local 1262 GNode *gn; local 1304 GNode *gn = Targ_GetNode(start); local 1366 GNode *gn = Lst_Dequeue(&members); local 1454 GNode *gn; \/* Node for the transformation rule *\/ local [all...] |
| cond.c | 317 GNode *gn = Targ_FindNode(node); local 318 return gn != NULL && GNode_IsTarget(gn); 325 GNode *gn = Targ_FindNode(node); local 326 return gn != NULL && GNode_IsTarget(gn) && 327 !Lst_IsEmpty(&gn->commands);
|
| job.c | 520 SwitchOutputTo(GNode *gn) 525 if (gn == lastNode) 527 lastNode = gn; 530 (void)fprintf(stdout, "%s %s ---\n", targPrefix, gn->name); 592 JobDeleteTarget(GNode *gn) 596 if (gn->type & OP_JOIN) 598 if (gn->type & OP_PHONY) 600 if (GNode_IsPrecious(gn)) 605 file = GNode_Path(gn); 1368 TouchRegular(GNode *gn) 2756 GNode *gn = Targ_FindNode(target); local [all...] |
| parse.c | 502 RememberLocation(GNode *gn) 505 gn->fname = Str_Intern(curFile->name.str); 506 gn->lineno = curFile->lineno; 535 PrintLocation(FILE *f, bool useVars, const GNode *gn) 542 if (gn != NULL) { 543 fname = gn->fname; 544 lineno = gn->lineno; 574 ParseVErrorInternal(FILE *f, bool useVars, const GNode *gn, 581 PrintLocation(f, useVars, gn); 599 || (gn == NULL && includes.len == 0 /* see PrintLocation */) 796 GNode *gn; local 857 GNode *gn; local 882 GNode *gn; local 929 GNode *gn = ln->datum; local 1014 GNode *gn = Targ_GetNode(targetName); local 1029 GNode *gn = GNode_New(".DEFAULT"); local 1113 GNode *gn = Suff_IsTransform(name) local 1587 GNode *gn = Lst_Dequeue(&sources); local 2679 GNode *gn = ln->datum; local 2722 GNode *gn = ln->datum; local [all...] |
| var.c | 400 const GNode *gn; local 411 && (gn = Targ_FindNode(elem->str)) != NULL 412 && gn->fname != NULL) { 414 Buf_AddStr(buf, gn->fname); 416 Buf_AddInt(buf, (int)gn->lineno); 1343 GNode_ValueDirect(GNode *gn, const char *name) 1345 Var *v = VarFind(name, gn, false); 2617 GNode *gn; local 2627 gn = Targ_FindNode(expr->name); 2628 if (gn == NULL || gn->type & OP_NOPATH [all...] |
| /src/games/hack/ |
| hack.do_name.c | 284 const char *gn = (char *) mtmp->mextra; local 285 if (!*gn) { /* might also look in scorefile */ 286 gn = ghostnames[rn2(SIZE(ghostnames))]; 289 strlcpy((char *) mtmp->mextra, !rn2(5) ? plname : gn, mtmp->mxlth); 291 (void) snprintf(buf, sizeof(buf), "%s's ghost", gn);
|
| /src/external/lgpl3/gmp/dist/mpn/generic/ |
| gcd.c | 67 mp_size_t gn; member in struct:gcd_ctx 71 gcd_hook (void *p, mp_srcptr gp, mp_size_t gn, 75 MPN_COPY (ctx->gp, gp, gn); 76 ctx->gn = gn; 139 ctx.gn = n; 237 ctx.gn = 1; 261 ctx.gn = 1 + (g.d1 > 0); 265 return ctx.gn;
|
| gcdext.c | 106 mp_srcptr gp, mp_size_t gn, 116 ASSERT (gn > 0); 125 ASSERT (gn <= an); 138 ASSERT_NOCARRY (mpn_sub (tp, tp, size, gp, gn)); 147 ASSERT_NOCARRY (mpn_add (tp, tp, size, gp, gn)); 276 mp_size_t gn = mpn_gcdext_lehmer_n(gp, up, usizep, ap, bp, n, tp); local 279 return gn; 335 return ctx.gn; 390 return ctx.gn; 450 mp_size_t gn; local 465 mp_size_t gn; local [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/hx509/ |
| print.c | 569 GeneralNames gn; local 582 &gn, &size); 589 if (gn.len == 0) { 595 for (i = 0; i < gn.len; i++) { 596 switch (gn.val[i].element) { 605 &gn.val[i].u.otherName.type_id) != 0) 610 (*altname_types[j].func)(ctx, &gn.val[i].u.otherName.value); 614 hx509_oid_print(&gn.val[i].u.otherName.type_id, 623 ret = hx509_general_name_unparse(&gn.val[i], &s); 636 free_GeneralNames(&gn); [all...] |
| ca.c | 482 GeneralName gn; local 487 name.u.fullName.val = &gn; 489 gn.element = choice_GeneralName_uniformResourceIdentifier; 490 gn.u.uniformResourceIdentifier.data = rk_UNCONST(uri); 491 gn.u.uniformResourceIdentifier.length = strlen(uri); 516 GeneralName gn; 523 memset(&gn, 0, sizeof(gn)); 525 gn.element = choice_GeneralName_directoryName; 532 gn.u.directoryName.element = n.element 578 GeneralName gn; local 787 GeneralName gn; local 815 GeneralName gn; local 1500 GeneralName gn; local [all...] |
| /src/external/bsd/tre/dist/python/ |
| tre-python.c | 196 PyTreMatch_groupi(PyObject *obj, int gn) 202 if (gn < 0 || (size_t)gn > self->am.nmatch - 1) 207 rm = &self->am.pmatch[gn]; 221 long gn; local 223 gn = PyInt_AsLong(grpno); 228 result = PyTreMatch_groupi((PyObject*)self, gn);
|
| /src/crypto/external/apache2/openssl/dist/apps/lib/ |
| cmp_mock_srv.c | 479 GENERAL_NAME *gn = sk_GENERAL_NAME_value(issuer, 0); local 481 if (gn != NULL && gn->type == GEN_DIRNAME) { 482 X509_NAME *gen_name = gn->d.dirn;
|
| /src/usr.bin/sed/ |
| compile.c | 705 int gn; /* True if we have seen g or n */ local 714 for (gn = 0;;) { 718 if (gn) 721 gn = 1; 738 if (gn) 741 gn = 1;
|
| /src/usr.sbin/syslogd/ |
| tls.c | 443 GENERAL_NAME *gn; local 468 gn = sk_GENERAL_NAME_value(gennames, i); 469 if (gn->type == GEN_IPADD 471 gn->d.iPAddress)) 477 gn = sk_GENERAL_NAME_value(gennames, i); 478 if (gn->type == GEN_DNS) { 480 ASN1_STRING_get0_data(gn->d.ia5); 481 len = ASN1_STRING_length(gn->d.ia5);
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| tls_o.c | 877 GENERAL_NAME *gn; local 890 gn = sk_GENERAL_NAME_value(alt, i); 891 if (gn->type == GEN_DNS) { 894 sn = (char *) ASN1_STRING_data(gn->d.ia5); 895 sl = ASN1_STRING_length(gn->d.ia5); 912 } else if (gn->type == GEN_IPADD) { 915 sn = (char *) ASN1_STRING_data(gn->d.ia5); 916 sl = ASN1_STRING_length(gn->d.ia5);
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| zio.c | 1940 zio_read_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, void *data) 1942 if (gn != NULL) 1951 zio_rewrite_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, void *data) 1955 if (gn != NULL) { 1957 gn->gn_gbh, SPA_GANGBLOCKSIZE, NULL, NULL, pio->io_priority, 1968 if (gn != pio->io_gang_leader->io_gang_tree) { 1989 zio_free_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, void *data) 1998 zio_claim_gang(zio_t *pio, blkptr_t *bp, zio_gang_node_t *gn, void *data) 2018 zio_gang_node_t *gn; local 2022 gn = kmem_zalloc(sizeof (*gn), KM_SLEEP) 2032 zio_gang_node_t *gn = *gnpp; local 2045 zio_gang_node_t *gn = *gnpp; local 2059 zio_gang_node_t *gn = zio_gang_node_alloc(gnpp); local 2073 zio_gang_node_t *gn = zio->io_private; local 2206 zio_gang_node_t *gn, **gnpp; local [all...] |
| /src/external/gpl2/texinfo/dist/makeinfo/ |
| lang.h | 39 ga, gd, gl, gn, gu, enumerator in enum:__anon9561
|
| /src/external/gpl2/groff/dist/src/roff/troff/ |
| env.cpp | 1814 node *gn = numbering_nodes; local 1816 gn = gn->next; 1817 gn = gn->copy(); 1818 x -= gn->width(); 1819 gn->next = nn; 1820 nn = gn;
|
| input.cpp | 2173 node *gn = curenv->make_char_node(ci); local 2174 if (gn == 0) 2176 nd = new zero_width_node(gn); 2203 const char *gn = check_unicode_name(s.contents()); local 2204 if (gn) { 2205 const char *gn_decomposed = decompose_unicode(gn); 2207 gn = &gn_decomposed[1]; 2208 const char *groff_gn = unicode_to_glyph_name(gn); 2212 char *buf = new char[strlen(gn) + 1 + 1]; 2214 strcat(buf, gn); 3893 const char *gn = glyph_name_to_unicode(nm.contents()); local [all...] |
| node.cpp | 2077 node *glyph_node::merge_glyph_node(glyph_node *gn) 2079 if (tf == gn->tf && gcol == gn->gcol && fcol == gn->fcol) { 2081 if ((lig = tf->get_lig(ci, gn->ci)) != 0) { 2084 return new ligature_node(lig, tf, gcol, fcol, this, gn, state, 2085 gn->div_nest_level, next1); 2088 if (tf->get_kern(ci, gn->ci, &kern)) { 2091 return new kern_pair_node(kern, this, gn, state, 2092 gn->div_nest_level, next1) 2309 glyph_node *gn = new glyph_node(soft_hyphen_char, tf, gcol, fcol, local 2456 glyph_node *gn = new glyph_node(soft_hyphen_char, tf, gcol, fcol, local 5012 node *gn = make_glyph_node(ci, env); local [all...] |