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

1234567891011>>

/freebsd-10.0-release/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.0-release/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.0-release/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.0-release/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.0-release/contrib/ntp/scripts/
H A DgenCommitLog6 bk -R prs -hr${CLTAG}.. -nd':I:' | bk changes -m -v - > CommitLog.new
7 mv CommitLog.new CommitLog
/freebsd-10.0-release/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.0-release/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.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXTargetObjectFile.h49 TextSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getText());
51 new NVPTXSection(MCSection::SV_ELF, SectionKind::getDataRel());
52 BSSSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getBSS());
54 new NVPTXSection(MCSection::SV_ELF, SectionKind::getReadOnly());
57 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata());
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 NVPTXSectio
[all...]
/freebsd-10.0-release/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.0-release/contrib/dtc/
H A Dutil.h38 void *new = malloc(len);
40 if (!new)
43 return new;
48 void *new = realloc(p, len);
50 if (!new)
53 return new;
/freebsd-10.0-release/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.0-release/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
521 PLAN *new; local
687 PLAN *new; /* node returned */ local
823 PLAN *new; local
931 PLAN *new; local
976 PLAN *new; local
1034 PLAN *new; local
1055 PLAN *new; local
1083 PLAN *new; local
1140 PLAN *new; local
1177 PLAN *new; local
1288 PLAN *new; local
1406 PLAN *new; local
1464 PLAN *new; local
1549 PLAN *new; local
1609 PLAN *new; local
[all...]
/freebsd-10.0-release/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.0-release/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
201 apr_socket_accept(apr_socket_t **new, apr_socket_t *sock, apr_pool_t *connection_context) argument
410 sock_userdata_t *new = apr_palloc(sock->pool, sizeof(sock_userdata_t)); local
[all...]
/freebsd-10.0-release/lib/libc/locale/
H A Dxlocale.c199 * Allocates a new, uninitialised, locale.
204 locale_t new = calloc(sizeof(struct _xlocale), 1); local
206 new->header.destructor = destruct_locale;
207 new->monetary_locale_changed = 1;
208 new->numeric_locale_changed = 1;
209 return (new);
212 copyflags(locale_t new, locale_t old) argument
214 new->using_monetary_locale = old->using_monetary_locale;
215 new->using_numeric_locale = old->using_numeric_locale;
216 new
220 dupcomponent(int type, locale_t base, locale_t new) argument
258 locale_t new = alloc_locale(); local
304 locale_t new = alloc_locale(); local
[all...]
/freebsd-10.0-release/contrib/llvm/include/llvm/
H A DLinkAllIR.h46 (void)new llvm::Module("", llvm::getGlobalContext());
47 (void)new llvm::UnreachableInst(llvm::getGlobalContext());
/freebsd-10.0-release/contrib/ntp/sntp/
H A Dtiming.c61 struct timeval old, new, adjust, previous; local
74 new.tv_sec = old.tv_sec+adjust.tv_sec;
75 new.tv_usec = (n = (long)old.tv_usec+(long)adjust.tv_usec);
77 new.tv_usec += MILLION_L;
78 --new.tv_sec;
80 new.tv_usec -= MILLION_L;
81 ++new.tv_sec;
88 "Times: old=(%ld,%.6ld) new=(%ld,%.6ld) adjust=(%ld,%.6ld)\n",
90 (long)new.tv_sec,(long)new
[all...]
/freebsd-10.0-release/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.0-release/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.0-release/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 235 milliseconds

1234567891011>>