| /netbsd-src/external/mit/isl/dist/ | 
| H A D | isl_printer.c | 7 static __isl_give isl_printer *file_start_line(__isl_take isl_printer *p)  in file_start_line()  argument9 	fprintf(p->file, "%s%*s%s", p->indent_prefix ? p->indent_prefix : "",  in file_start_line()
 10 				    p->indent, "", p->prefix ? p->prefix : "");  in file_start_line()
 11 	return p;  in file_start_line()
 14 static __isl_give isl_printer *file_end_line(__isl_take isl_printer *p)  in file_end_line()  argument
 16 	fprintf(p->file, "%s\n", p->suffix ? p->suffix : "");  in file_end_line()
 17 	return p;  in file_end_line()
 20 static __isl_give isl_printer *file_flush(__isl_take isl_printer *p)  in file_flush()  argument
 22 	fflush(p->file);  in file_flush()
 23 	return p;  in file_flush()
 [all …]
 
 | 
| H A D | isl_output.c | 2  * Copyright 2008-2009 Katholieke Universiteit Leuven4  * Copyright 2012-2013 Ecole Normale Superieure
 10  * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
 11  * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
 45 static const char *s_to[2] = { " -> ", " \\to " };
 59 static const char *s_param_prefix[2] = { "p", "p_" };
 64 	struct isl_basic_map *bmap, int ineq, int n, __isl_take isl_printer *p)  in print_constraint_polylib()  argument
 70 	isl_int *c = ineq ? bmap->ineq[n] : bmap->eq[n];  in print_constraint_polylib()
 73 		return isl_printer_free(p);  in print_constraint_polylib()
 75 	p = isl_printer_start_line(p);  in print_constraint_polylib()
 [all …]
 
 | 
| /netbsd-src/lib/libm/ld80/ | 
| H A D | s_logl.c | 1 /*-2  * SPDX-License-Identifier: BSD-2-Clause
 4  * Copyright (c) 2007-2013 Bruce D. Evans
 31  * Implementation of the natural logarithm of x for Intel 80-bit format.
 39  * [-1.0/256, 1.0/256), [1.0/256, 3.0/256), .... [2.0-1.0/256, 2.0+1.0/256)
 48  *    log(1 + d) = p(d)
 50  * where p(d) = d - 0.5*d*d + ... is a special minimax polynomial of
 54  * sometimes (if |k| is not large) the first term in p(d) must be evaluated
 56  * rest of p(d).  In the worst case when k = 0 and log(X_i) is 0, the final
 57  * error is controlled mainly by the error in the second term in p(d).  The
 [all …]
 
 | 
| /netbsd-src/external/bsd/pcc/dist/pcc/cc/ccom/ | 
| H A D | optim.c | 4  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.43 # define SWAP(p,q) {sp=p; p=q; q=sp;}  argument
 44 # define RCON(p) (p->n_right->n_op==ICON)  argument
 45 # define RO(p) p->n_right->n_op  argument
 46 # define RV(p) getlval(p->n_right)  argument
 47 # define LCON(p) (p->n_left->n_op==ICON)  argument
 48 # define LO(p) p->n_left->n_op  argument
 49 # define LV(p) getlval(p->n_left)  argument
 53 zapleft(NODE *p)  in zapleft()  argument
 57 	q = p->n_left;  in zapleft()
 [all …]
 
 | 
| H A D | trees.c | 31  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.65  * - Understand "void" as type.
 66  * - Handle enums as ints everywhere.
 67  * - Convert some C-specific ops into branches.
 77 static void chkpun(P1ND *p);
 78 static int opact(P1ND *p);
 81 static void rmcops(P1ND *p);
 82 static P1ND *tymatch(P1ND *p);
 84 static int has_se(P1ND *p);
 140 		rval<0 is -inlabel number
 [all …]
 
 | 
| /netbsd-src/lib/libm/ld128/ | 
| H A D | s_logl.c | 1 /*-2  * SPDX-License-Identifier: BSD-2-Clause
 4  * Copyright (c) 2007-2013 Bruce D. Evans
 31  * Implementation of the natural logarithm of x for 128-bit format.
 39  * [-1.0/256, 1.0/256), [1.0/256, 3.0/256), .... [2.0-1.0/256, 2.0+1.0/256)
 48  *    log(1 + d) = p(d)
 50  * where p(d) = d - 0.5*d*d + ... is a special minimax polynomial of
 54  * sometimes (if |k| is not large) the first term in p(d) must be evaluated
 56  * rest of p(d).  In the worst case when k = 0 and log(X_i) is 0, the final
 57  * error is controlled mainly by the error in the second term in p(d).  The
 [all …]
 
 | 
| /netbsd-src/external/bsd/pcc/dist/pcc/cc/cxxcom/ | 
| H A D | optim.c | 4  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.39 # define SWAP(p,q) {sp=p; p=q; q=sp;}  argument
 40 # define RCON(p) (p->n_right->n_op==ICON)  argument
 41 # define RO(p) p->n_right->n_op  argument
 42 # define RV(p) glval(p->n_right)  argument
 43 # define LCON(p) (p->n_left->n_op==ICON)  argument
 44 # define LO(p) p->n_left->n_op  argument
 45 # define LV(p) glval(p->n_left)  argument
 49 zapleft(NODE *p)  in zapleft()  argument
 53 	q = p->n_left;  in zapleft()
 [all …]
 
 | 
| H A D | trees.c | 31  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.65  * - Understand "void" as type.
 66  * - Handle enums as ints everywhere.
 67  * - Convert some C-specific ops into branches.
 76 static void chkpun(NODE *p);
 77 static int opact(NODE *p);
 80 static void rmcops(NODE *p);
 81 static NODE *tymatch(NODE *p);
 138 		rval<0 is -inlabel number
 141 		rval has the STAB index, or - label number,
 [all …]
 
 | 
| /netbsd-src/external/bsd/mdocml/dist/ | 
| H A D | term.c | 4  * Copyright (c) 2010-2019 Ingo Schwarze <schwarze@openbsd.org>48 term_setcol(struct termp *p, size_t maxtcol)  in term_setcol()  argument
 50 	if (maxtcol > p->maxtcol) {  in term_setcol()
 51 		p->tcols = mandoc_recallocarray(p->tcols,  in term_setcol()
 52 		    p->maxtcol, maxtcol, sizeof(*p->tcols));  in term_setcol()
 53 		p->maxtcol = maxtcol;  in term_setcol()
 55 	p->lasttcol = maxtcol - 1;  in term_setcol()
 56 	p->tcol = p->tcols;  in term_setcol()
 60 term_free(struct termp *p)  in term_free()  argument
 62 	for (p->tcol = p->tcols; p->tcol < p->tcols + p->maxtcol; p->tcol++)  in term_free()
 [all …]
 
 | 
| H A D | term_ps.c | 44 #define	PNT2AFM(p, x) \  argument45 	(size_t)((double)(x) * (1000.0 / (double)(p)->ps->scale))
 48 #define	AFM2PNT(p, x) \  argument
 49 	((double)(x) / (1000.0 / (double)(p)->ps->scale))
 74 	char		  last;		/* last non-backspace seen */
 119  * normal (roman).  The following table hard-codes the font metrics for
 120  * ASCII, i.e., 32--127.
 124 	{ "Times-Roman", {
 221 	{ "Times-Bold", {
 318 	{ "Times-Italic", {
 [all …]
 
 | 
| H A D | man_term.c | 3  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>4  * Copyright (c) 2010-2015, 2017-2019 Ingo Schwarze <schwarze@openbsd.org>
 46 #define	DECL_ARGS	  struct termp *p, \
 95 static const struct man_term_act man_term_acts[MAN_MAX - MAN_TH] = {
 103 	{ pre_abort, NULL, 0 }, /* P */
 141 	return man_term_acts + (tok - MAN_TH);  in man_term_act()
 148 	struct termp		*p;  in terminal_man()  local
 152 	p = (struct termp *)arg;  in terminal_man()
 153 	save_defindent = p->defindent;  in terminal_man()
 154 	if (p->synopsisonly == 0 && p->defindent == 0)  in terminal_man()
 [all …]
 
 | 
| H A D | mdoc_term.c | 4  * Copyright (c) 2010, 2012-2019 Ingo Schwarze <schwarze@openbsd.org>44 #define	DECL_ARGS struct termp *p, \
 127 static const struct mdoc_term_act mdoc_term_acts[MDOC_MAX - MDOC_Dd] = {
 176 	{ NULL, termp____post }, /* %P */
 257 	struct termp		*p;  in terminal_mdoc()  local
 260 	p = (struct termp *)arg;  in terminal_mdoc()
 261 	p->tcol->rmargin = p->maxrmargin = p->defrmargin;  in terminal_mdoc()
 262 	term_tab_set(p, NULL);  in terminal_mdoc()
 263 	term_tab_set(p, "T");  in terminal_mdoc()
 264 	term_tab_set(p, ".5i");  in terminal_mdoc()
 [all …]
 
 | 
| /netbsd-src/sys/external/bsd/compiler_rt/dist/test/Unit/ppc/ | 
| H A D | floatditf_test.h | 8 { INT64_C(0x0000000000000061), 0x1.84p+6, 0x0p+0 },9 { INT64_C(0xffffffffffffff9e), -0x1.88p+6, 0x0p+0 },
 10 { INT64_C(0x0000000000000062), 0x1.88p+6, 0x0p+0 },
 11 { INT64_C(0xffffffffffffff9d), -0x1.8cp+6, 0x0p+0 },
 13 { INT64_C(0xfffffffffffffbfc), -0x1.01p+10, 0x0p+0 },
 14 { INT64_C(0x000000000000040a), 0x1.028p+10, 0x0p+0 },
 15 { INT64_C(0xfffffffffffffbf5), -0x1.02cp+10, 0x0p+0 },
 16 { INT64_C(0x000000000000040c), 0x1.03p+10, 0x0p+0 },
 17 { INT64_C(0xfffffffffffffbf3), -0x1.034p+10, 0x0p+0 },
 18 { INT64_C(0x000000000000040e), 0x1.038p+10, 0x0p+0 },
 [all …]
 
 | 
| H A D | qsub_test.c | 30 {	0.0,		0.0,	   -0.0,		0.0,		0.0,		0.0			},31 {  -0.0,		0.0,	   -0.0,		0.0,		0.0,		0.0			},
 33 {  -0.0,		0.0,	    0.0,		0.0,	   -0.0,		0.0			},
 35 {   INFINITY,	0.0,	   -0.0,		0.0,		INFINITY,	0.0			},
 36 {  -INFINITY,	0.0,	   -0.0,		0.0,	   -INFINITY,	0.0			},
 38 {  -INFINITY,	0.0,	    0.0,		0.0,	   -INFINITY,	0.0			},
 39 {   INFINITY,	0.0,	   -1.0,		0.0,		INFINITY,	0.0			},
 40 {  -INFINITY,	0.0,	   -1.0,		0.0,	   -INFINITY,	0.0			},
 42 {  -INFINITY,	0.0,	    1.0,		0.0,	   -INFINITY,	0.0			},
 43 {   INFINITY,	0.0,	   -HUGE,		0.0,		INFINITY,	0.0			},
 [all …]
 
 | 
| H A D | qadd_test.c | 31 {  -0.0,		0.0,		0.0,		0.0,		0.0,		0.0			},32 {   0.0,		0.0,	   -0.0,		0.0,		0.0,		0.0			},
 33 {  -0.0,		0.0,	   -0.0,		0.0,	   -0.0,		0.0			},
 36 {  -INFINITY,	0.0,		0.0,		0.0,	   -INFINITY,	0.0			},
 37 {   INFINITY,	0.0,	   -0.0,		0.0,		INFINITY,	0.0			},
 38 {  -INFINITY,	0.0,	   -0.0,		0.0,	   -INFINITY,	0.0			},
 40 {  -INFINITY,	0.0,	    1.0,		0.0,	   -INFINITY,	0.0			},
 41 {   INFINITY,	0.0,	   -1.0,		0.0,		INFINITY,	0.0			},
 42 {  -INFINITY,	0.0,	   -1.0,		0.0,	   -INFINITY,	0.0			},
 44 {  -INFINITY,	0.0,	    HUGE,		0.0,	   -INFINITY,	0.0			},
 [all …]
 
 | 
| /netbsd-src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ppc/ | 
| H A D | floatditf_test.h | 8 { INT64_C(0x0000000000000061), 0x1.84p+6, 0x0p+0 },9 { INT64_C(0xffffffffffffff9e), -0x1.88p+6, 0x0p+0 },
 10 { INT64_C(0x0000000000000062), 0x1.88p+6, 0x0p+0 },
 11 { INT64_C(0xffffffffffffff9d), -0x1.8cp+6, 0x0p+0 },
 13 { INT64_C(0xfffffffffffffbfc), -0x1.01p+10, 0x0p+0 },
 14 { INT64_C(0x000000000000040a), 0x1.028p+10, 0x0p+0 },
 15 { INT64_C(0xfffffffffffffbf5), -0x1.02cp+10, 0x0p+0 },
 16 { INT64_C(0x000000000000040c), 0x1.03p+10, 0x0p+0 },
 17 { INT64_C(0xfffffffffffffbf3), -0x1.034p+10, 0x0p+0 },
 18 { INT64_C(0x000000000000040e), 0x1.038p+10, 0x0p+0 },
 [all …]
 
 | 
| H A D | qsub_test.c | 30 {	0.0,		0.0,	   -0.0,		0.0,		0.0,		0.0			},31 {  -0.0,		0.0,	   -0.0,		0.0,		0.0,		0.0			},
 33 {  -0.0,		0.0,	    0.0,		0.0,	   -0.0,		0.0			},
 35 {   INFINITY,	0.0,	   -0.0,		0.0,		INFINITY,	0.0			},
 36 {  -INFINITY,	0.0,	   -0.0,		0.0,	   -INFINITY,	0.0			},
 38 {  -INFINITY,	0.0,	    0.0,		0.0,	   -INFINITY,	0.0			},
 39 {   INFINITY,	0.0,	   -1.0,		0.0,		INFINITY,	0.0			},
 40 {  -INFINITY,	0.0,	   -1.0,		0.0,	   -INFINITY,	0.0			},
 42 {  -INFINITY,	0.0,	    1.0,		0.0,	   -INFINITY,	0.0			},
 43 {   INFINITY,	0.0,	   -HUGE,		0.0,		INFINITY,	0.0			},
 [all …]
 
 | 
| H A D | qadd_test.c | 31 {  -0.0,		0.0,		0.0,		0.0,		0.0,		0.0			},32 {   0.0,		0.0,	   -0.0,		0.0,		0.0,		0.0			},
 33 {  -0.0,		0.0,	   -0.0,		0.0,	   -0.0,		0.0			},
 36 {  -INFINITY,	0.0,		0.0,		0.0,	   -INFINITY,	0.0			},
 37 {   INFINITY,	0.0,	   -0.0,		0.0,		INFINITY,	0.0			},
 38 {  -INFINITY,	0.0,	   -0.0,		0.0,	   -INFINITY,	0.0			},
 40 {  -INFINITY,	0.0,	    1.0,		0.0,	   -INFINITY,	0.0			},
 41 {   INFINITY,	0.0,	   -1.0,		0.0,		INFINITY,	0.0			},
 42 {  -INFINITY,	0.0,	   -1.0,		0.0,	   -INFINITY,	0.0			},
 44 {  -INFINITY,	0.0,	    HUGE,		0.0,	   -INFINITY,	0.0			},
 [all …]
 
 | 
| /netbsd-src/external/bsd/pcc/dist/pcc/arch/vax/ | 
| H A D | order.c | 4  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.41 int maxargs = { -1 };
 44 stoasg( p, o ) register NODE *p; {
 45 	/* should the assignment op p be stored,
 49 	if( p->op == INCR || p->op == DECR ) return;
 50 	if( o==UNARY MUL && p->left->op == REG && !isbreg(p->left->rval) ) SETSTO(p,INAREG);
 55 deltest( p ) register NODE *p; {
 56 	/* should we delay the INCR or DECR operation p */
 57 	p = p->n_left;
 58 	return( p->n_op == REG || p->n_op == NAME || p->n_op == OREG );
 [all …]
 
 | 
| H A D | local2.c | 4  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.42 static void acon(NODE *p);
 51 	printf("	.word 0x%llx\n", (unsigned long long)ipp->ipp_regs[0]);  in prologue()
 72 	if (ipp->ipp_ip.ip_lbl == 0)  in eoftn()
 86 	{ -1, ""     },
 95 	for( q = ioptab;  q->opmask>=0; ++q ){  in hopcode()
 96 		if( q->opmask == o ){  in hopcode()
 97 			printf( "%s", q->opstring );  in hopcode()
 132 tlen(NODE *p)  in tlen()  argument
 134 	switch(p->n_type) {  in tlen()
 [all …]
 
 | 
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/ | 
| H A D | params.c | 2  * Copyright 2019-2023 The OpenSSL Project Authors. All Rights Reserved.29 OSSL_PARAM *OSSL_PARAM_locate(OSSL_PARAM *p, const char *key)  in OSSL_PARAM_locate()  argument
 31     if (p != NULL && key != NULL)  in OSSL_PARAM_locate()
 32         for (; p->key != NULL; p++)  in OSSL_PARAM_locate()
 33             if (strcmp(key, p->key) == 0)  in OSSL_PARAM_locate()
 34                 return p;  in OSSL_PARAM_locate()
 38 const OSSL_PARAM *OSSL_PARAM_locate_const(const OSSL_PARAM *p, const char *key)  in OSSL_PARAM_locate_const()  argument
 40     return OSSL_PARAM_locate((OSSL_PARAM *)p, key);  in OSSL_PARAM_locate_const()
 56 int OSSL_PARAM_modified(const OSSL_PARAM *p)  in OSSL_PARAM_modified()  argument
 58     return p != NULL && p->return_size != OSSL_PARAM_UNMODIFIED;  in OSSL_PARAM_modified()
 [all …]
 
 | 
| /netbsd-src/sys/arch/hpc/stand/binary/MIPS/ | 
| HD | hpcboot.exe.uue | 3 M````````````````````R`````X?N@X`M`G-(;@!3,TA5&AI<R!P<F]G<F%M4 M(&-A;FYO="!B92!R=6X@:6X@1$]3(&UO9&4N#0T*)`````````!CLNY4)].`
 5 M!R?3@`<GTX`'=//(5R33@`?G-Q=[*M.`!Z+,DP>ETX`')].`!SK3@`=$U(8'
 6 M)M.`!U)I8V@GTX`'``````````!010``9@$%``\=244``````````.``#P$+
 9 M`!```````````````'!-`0!0`````.`!`#@B````P`$`5!4`````````````
 13 M`&`P````(`$``#(````,`0````````````````!```!`+F1A=&$```!A60``
 14 M`&`!``!:````/@$`````````````````0```P"YP9&%T80``5!4```#``0``
 15 M%@```)@!`````````````````$```$`N<G-R8P```#@B````X`$``"0```"N
 25 M`"P`OZ\D`+2O(`"SKQP`LJ\8`+&O%`"PKUP`I:]@`*:O`@`./``@SB4#`*ZJ
 26 M`@`0/```KKH88A`F)9@``)IO``PE(```)8A``"4@0`">;P`,#``%)"6@0``E
 [all …]
 
 | 
| HD | hpcboot101.exe.uue | 3 M````````````````````L`````X?N@X`M`G-(;@!3,TA5&AI<R!P<F]G<F%M4 M(&-A;FYO="!B92!R=6X@:6X@1$]3(&UO9&4N#0T*)`````````#5(#7;D4%;
 8 M`````!```!``````$```$````````!````````````````"P`0!0`````,`!
 9 M`*P/````D`$`]!4``````````````-`!`-0>````````````````````````
 14 M0```P"YP9&%T80``]!4```"0`0``%@```&@!`````````````````$```$`N
 15 M:61A=&$``$X*````L`$```P```!^`0````````````````!```#`+G)S<F,`
 16 M``"L#P```,`!```0````B@$`````````````````0```0"YR96QO8P``ZB$`
 25 M`"P`OZ\D`+2O(`"SKQP`LJ\8`+&O%`"PKUP`I:]@`*:O`@`./``@SB4"`!`\
 26 M``"NKB!`$"8EF```)6T`#"4@```EB$``)2!``"EM``P,``4D):!``"4@```M
 27 M;0`,)2@@`@(``3P@0#F,7`"OCV``N(]``*^O%``@$T0`N*\```*..`"R)T``
 [all …]
 
 | 
| /netbsd-src/external/ibm-public/postfix/dist/proto/ | 
| H A D | postconf.proto | 2 # manual page, the summaries of parameters in on-line manual pages,18 #     the postconf(5) UNIX-style manual page.  This tool knows only
 29 #     p, pre, b, i, h, and the escapes for < <= >= >. Sorry, no
 39 #   * Text between <!-- and --> is stripped out. The <!-- and -->
 84 #     on-line manual pages, in the one-line configuration parameter
 98 #     enclosed with <p> and </p>.
 106 %CLASS address-verification Address verification (Postfix 2.1 and later)
 108 <p>
 117 </p>
 119 %CLASS smtpd-compatibility Compatibility controls
 [all …]
 
 | 
| /netbsd-src/external/bsd/pcc/dist/pcc/mip/ | 
| H A D | reader.c | 29  * Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.83 void deltemp(NODE *p, void *);
 87 static void gencode(NODE *p, int cookie);
 88 static void genxasm(NODE *p);
 101 	if (crslab2 < p2env.ipp->ip_lblnum)  in getlab2()
 102 		comperr("getlab2 %d outside boundaries %d-%d",  in getlab2()
 103 		    crslab2, p2env.ipp->ip_lblnum, p2env.epp->ip_lblnum);  in getlab2()
 104 	if (crslab2 >= p2env.epp->ip_lblnum)  in getlab2()
 105 		p2env.epp->ip_lblnum = crslab2+1;  in getlab2()
 113 cktree(NODE *p, void *arg)  in cktree()  argument
 [all …]
 
 |