Searched refs:new (Results 1 - 25 of 937) sorted by relevance

1234567891011>>

/freebsd-10-stable/lib/libc/sparc64/gen/
H A Dfpsetmask.c17 fp_except_t new; local
21 new = old;
22 new &= ~FSR_TEM_MASK;
23 new |= FSR_TEM(mask & FSR_EXC_MASK);
25 __asm__("ld %0,%%fsr" : : "m" (new));
H A Dfpsetround.c19 unsigned int new; local
23 new = old;
24 new &= ~FSR_RD_MASK;
25 new |= FSR_RD((unsigned int)rnd_dir & 0x03);
27 __asm__("ld %0,%%fsr" : : "m" (new));
/freebsd-10-stable/contrib/ldns/compat/
H A Dcalloc.c17 void *new = malloc(num * size); local
18 if (!new) {
21 bzero(new, num * size);
22 return new;
/freebsd-10-stable/lib/libc/arm/gen/
H A Dfpsetround_vfp.c41 uint32_t old, new; local
44 new = old & ~(3 << 22);
45 new |= rnd_dir << 22;
46 __asm __volatile("vmsr fpscr, %0" : : "r"(new));
H A Dfpsetsticky_vfp.c43 fp_except old, new; local
46 new = old & ~(FP_X_MASK);
47 new &= ~except;
48 __asm __volatile("vmsr fpscr, %0" : : "r"(new));
H A Dfpsetmask_vfp.c43 fp_except old, new; local
47 new = (old & ~(FP_X_MASK << 8)) | mask;
48 __asm __volatile("vmsr fpscr, %0" : : "r"(new));
/freebsd-10-stable/lib/libc/mips/gen/hardfloat/
H A Dfpsetmask.c27 fp_except_t new; local
31 new = old;
32 new &= ~(0x1f << 7);
33 new |= ((mask & 0x1f) << 7);
35 __asm("ctc1 %0,$31" : : "r" (new));
H A Dfpsetround.c26 fp_rnd_t new; local
30 new = old;
31 new &= ~0x03;
32 new |= (rnd_dir & 0x03);
34 __asm("ctc1 %0,$31" : : "r" (new));
H A Dfpsetsticky.c27 fp_except new; local
31 new = old;
32 new &= ~(0x1f << 2);
33 new |= ((sticky & 0x1f) << 2);
35 __asm("ctc1 %0,$31" : : "r" (new));
/freebsd-10-stable/lib/libc/gen/
H A Dualarm.c51 struct itimerval new, old; local
53 new.it_interval.tv_usec = reload % USPS;
54 new.it_interval.tv_sec = reload / USPS;
56 new.it_value.tv_usec = usecs % USPS;
57 new.it_value.tv_sec = usecs / USPS;
59 if (setitimer(ITIMER_REAL, &new, &old) == 0)
/freebsd-10-stable/contrib/tcpdump/
H A Dsetsignal.c77 struct sigaction old, new; local
79 memset(&new, 0, sizeof(new));
80 new.sa_handler = func;
81 if (sigaction(sig, &new, &old) < 0)
H A Dmakemib179 # add a new object to the tree
181 # new OBJECT IDENTIFIER ::= { parent value }
184 function oidadd(new, parent, value) {
189 print "/* oidadd" inn(FILENAME) ":", new, "in", parent, "as", value, "line", $0, "*/"
191 gsub(/[-&\/]/,"",new)
196 inn(FILENAME), parent, new, value
200 if (oid[new] > 0 && oid[new] != value) {
202 inn(FILENAME), parent, new, value, oid[new]
[all...]
/freebsd-10-stable/lib/libkse/thread/
H A Dthr_clean.c47 struct pthread_cleanup *new; local
49 if ((new = (struct pthread_cleanup *)
51 new->routine = routine;
52 new->routine_arg = routine_arg;
53 new->onstack = 0;
54 new->next = curthread->cleanup;
56 curthread->cleanup = new;
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXTargetObjectFile.h51 TextSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getText());
53 new NVPTXSection(MCSection::SV_ELF, SectionKind::getDataRel());
54 BSSSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getBSS());
56 new NVPTXSection(MCSection::SV_ELF, SectionKind::getReadOnly());
59 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
61 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
63 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
65 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
67 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
69 new NVPTXSectio
[all...]
/freebsd-10-stable/contrib/nvi/ex/
H A Dex_edit.c115 SCR *new; local
117 /* Get a new screen. */
118 if (screen_init(sp->gp, sp, &new))
120 if ((cmdp->cmd == &cmds[C_VSPLIT] && vs_vsplit(sp, new)) ||
121 (cmdp->cmd != &cmds[C_VSPLIT] && vs_split(sp, new, 0))) {
122 (void)screen_end(new);
129 new->ep = sp->ep;
130 ++new->ep->refcnt;
132 new->frp = frp;
133 new
[all...]
/freebsd-10-stable/contrib/apr/network_io/unix/
H A Dsockets.c67 static void alloc_socket(apr_socket_t **new, apr_pool_t *p) argument
69 *new = (apr_socket_t *)apr_pcalloc(p, sizeof(apr_socket_t));
70 (*new)->pool = p;
71 (*new)->local_addr = (apr_sockaddr_t *)apr_pcalloc((*new)->pool,
73 (*new)->local_addr->pool = p;
74 (*new)->remote_addr = (apr_sockaddr_t *)apr_pcalloc((*new)->pool,
76 (*new)->remote_addr->pool = p;
77 (*new)
91 apr_socket_create(apr_socket_t **new, int ofamily, int type, int protocol, apr_pool_t *cont) argument
210 apr_socket_accept(apr_socket_t **new, apr_socket_t *sock, apr_pool_t *connection_context) argument
441 sock_userdata_t *new = apr_palloc(sock->pool, sizeof(sock_userdata_t)); local
[all...]
/freebsd-10-stable/contrib/texinfo/info/
H A Dgc.c49 char **new = (char **)NULL; local
68 (node->contents, new_index, new, new_slots, 10, char *);
75 of the original pointers which do not appear in the new list. */
79 if (gcable_pointers[i] == new[j])
82 /* If we got all the way through the new list, then the old pointer
84 if (new && !new[j])
89 gcable_pointers = new;
/freebsd-10-stable/usr.bin/find/
H A Dfind.c79 PLAN *plan, *tail, *new; local
83 * it is, create the appropriate node type and add the new plan node
98 if (!(new = find_create(&argv)))
101 tail = plan = new;
103 tail->next = new;
104 tail = new;
119 new = (p->create)(p, &argv1);
120 tail = plan = new;
123 new = (p->create)(p, &argv1);
124 new
[all...]
H A Dfunction.c92 PLAN *new; local
94 if ((new = malloc(sizeof(PLAN))) == NULL)
96 new->execute = option->execute;
97 new->flags = option->flags;
98 new->next = NULL;
99 return new;
275 PLAN *new; local
280 new = palloc(option);
281 new->t_data.tv_sec = find_parsenum(new, optio
322 PLAN *new; local
348 PLAN *new; local
520 PLAN *new; local
686 PLAN *new; /* node returned */ local
822 PLAN *new; local
930 PLAN *new; local
975 PLAN *new; local
1033 PLAN *new; local
1054 PLAN *new; local
1082 PLAN *new; local
1152 PLAN *new; local
1189 PLAN *new; local
1300 PLAN *new; local
1418 PLAN *new; local
1476 PLAN *new; local
1561 PLAN *new; local
1621 PLAN *new; local
[all...]
/freebsd-10-stable/tools/tools/shlib-compat/
H A Dshlib-compat-dirs.sh8 echo "Usage: $0 orig-dir new-dir output-dir"
13 new=$2
35 rnew=`realpath $new`
39 test_file $orig/$i $new/$i || continue
40 $SHLIB_COMPAT --out-orig $out/$i.orig.c --out-new $out/$i.new.c -v "$@" \
41 $orig/$i $new/$i > $out/$i.cmp 2> $out/$i.err || true
42 remove_empty $out/$i.orig.c $out/$i.new.c $out/$i.cmp $out/$i.err
43 if [ -f $out/$i.orig.c -a -f $out/$i.new.c ]; then
44 astyle --quiet --style=bsd -k3 $out/$i.orig.c $out/$i.new
[all...]
/freebsd-10-stable/lib/libc/locale/
H A Dxlocale.c200 * Allocates a new, uninitialised, locale.
205 locale_t new = calloc(sizeof(struct _xlocale), 1); local
207 new->header.destructor = destruct_locale;
208 new->monetary_locale_changed = 1;
209 new->numeric_locale_changed = 1;
210 return (new);
213 copyflags(locale_t new, locale_t old) argument
215 new->using_monetary_locale = old->using_monetary_locale;
216 new->using_numeric_locale = old->using_numeric_locale;
217 new
221 dupcomponent(int type, locale_t base, locale_t new) argument
259 locale_t new = alloc_locale(); local
305 locale_t new = alloc_locale(); local
[all...]
/freebsd-10-stable/contrib/llvm/include/llvm/
H A DLinkAllIR.h46 (void)new llvm::Module("", llvm::getGlobalContext());
47 (void)new llvm::UnreachableInst(llvm::getGlobalContext());
/freebsd-10-stable/libexec/revnetgroup/
H A Dhash.c149 struct group_entry *new; local
154 new = (struct group_entry *)malloc(sizeof(struct group_entry));
155 new->key = strdup(key);
156 new->data = strdup(data);
157 new->next = table[i];
158 table[i] = new;
178 struct member_entry *cur, *new; local
189 /* Check if all we have to do is insert a new groupname. */
200 new = (struct member_entry *)malloc(sizeof(struct member_entry));
201 new
[all...]
/freebsd-10-stable/contrib/sendmail/src/
H A Drecipient.c189 /* heuristic to determine old versus new style addresses */
356 /* heuristic to determine old versus new style addresses */
439 ** new -- the (preparsed) address header for the recipient.
453 recipient(new, sendq, aliaslevel, e)
454 register ADDRESS *new;
477 initialdontsend = QS_IS_DEAD(new->q_state);
478 e->e_to = new->q_paddr;
479 m = new->q_mailer;
482 new->q_flags |= QPRIMARY;
486 printaddr(sm_debug_file(), new, fals local
822 printaddr(sm_debug_file(), new, false); local
953 printaddr(sm_debug_file(), new, false); local
1051 printaddr(sm_debug_file(), new, false); local
[all...]
/freebsd-10-stable/lib/libc/isc/
H A Dev_streams.c70 evStream *new; local
73 OKNEW(new);
74 new->func = func;
75 new->uap = uap;
76 new->fd = fd;
77 new->flags = 0;
78 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0)
80 if (copyvec(new, iov, iocnt) < 0)
82 new
104 evStream *new; local
[all...]

Completed in 158 milliseconds

1234567891011>>