Searched refs:spec (Results 26 - 50 of 167) sorted by relevance

1234567

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/
H A Derr.NegativeBufSize.d54 self->spec = speculation();
55 printf("Speculative buffer ID: %d\n", self->spec);
60 speculate(self->spec);
72 commit(self->spec);
H A Derr.SpecSizeVariations1.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
50 speculate(self->spec);
62 commit(self->spec);
H A Derr.SpecSizeVariations2.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
50 speculate(self->spec);
62 commit(self->spec);
H A Dtst.DiscardWithZero.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
49 /0 == self->spec/
51 discard(self->spec);
H A Dtst.SpecSizeVariations1.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
50 speculate(self->spec);
62 commit(self->spec);
H A Dtst.SpecSizeVariations2.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
50 speculate(self->spec);
62 commit(self->spec);
H A Dtst.SpecSizeVariations3.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
50 speculate(self->spec);
62 commit(self->spec);
H A Dtst.CommitWithZero.d44 self->spec = speculation();
45 printf("Speculative buffer ID: %d\n", self->spec);
50 commit(self->spec);
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_usr.c53 static void smb_usr_vcspec_free(struct smb_vcspec *spec);
56 smb_usr_vc2spec(struct smbioc_ossn *dp, struct smb_vcspec *spec) argument
60 bzero(spec, sizeof(*spec));
74 spec->sap = smb_memdupin(dp->ioc_server, dp->ioc_svlen);
75 if (spec->sap == NULL)
78 spec->lap = smb_memdupin(dp->ioc_local, dp->ioc_lolen);
79 if (spec->lap == NULL) {
80 smb_usr_vcspec_free(spec);
84 spec
103 smb_usr_vcspec_free(struct smb_vcspec *spec) argument
112 smb_usr_share2spec(struct smbioc_oshare *dp, struct smb_sharespec *spec) argument
[all...]
/freebsd-9.3-release/sys/dev/uart/
H A Duart_subr.c195 __const char *spec; local
213 spec = getenv("hw.uart.console");
215 spec = getenv("hw.uart.dbgport");
217 spec = NULL;
218 if (spec == NULL)
232 switch (uart_parse_tag(&spec)) {
234 di->baudrate = uart_parse_long(&spec);
237 di->bas.chan = uart_parse_long(&spec);
240 di->databits = uart_parse_long(&spec);
243 class = uart_parse_class(class, &spec);
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dattribs.c153 const struct attribute_spec *spec = NULL;
166 spec = &attribute_tables[i][j];
170 if (spec != NULL)
174 if (spec == NULL)
180 else if (list_length (args) < spec->min_length
181 || (spec->max_length >= 0
182 && list_length (args) > spec->max_length))
189 if (spec->decl_required && !DECL_P (*anode))
211 if (spec->type_required && DECL_P (*anode))
217 if (spec
152 const struct attribute_spec *spec = NULL; local
[all...]
/freebsd-9.3-release/sys/boot/common/
H A Dboot.c257 const char *spec, *ep; local
269 if ((spec = getenv("bootfile")) == NULL)
270 spec = default_bootfiles;
272 while ((try > 0) && (spec != NULL)) {
273 spec = strchr(spec, ';');
274 if (spec)
275 spec++; /* skip over the leading ';' */
278 if (spec != NULL) {
279 if ((ep = strchr(spec, ';')) !
[all...]
/freebsd-9.3-release/usr.sbin/setfmac/
H A Dsetfmac.c230 struct label_spec *spec; local
236 spec = malloc(sizeof(*spec));
237 if (spec == NULL)
252 spec->entries = calloc(nlines, sizeof(*spec->entries));
253 if (spec->entries == NULL)
255 spec->nentries = nlines;
270 add_spec_line(file, is_sebsd, &spec->entries[--nlines], line);
277 (long)spec
284 struct label_spec *spec; local
[all...]
/freebsd-9.3-release/gnu/usr.bin/cc/c++/
H A DMakefile12 SRCS+= g++spec.c
/freebsd-9.3-release/sbin/fsck/
H A Dfsck.c181 const char *spec, *mntpt, *type, *cp; local
185 spec = *argv;
186 cp = strrchr(spec, '/');
189 _PATH_DEV, spec);
190 spec = device;
192 mntp = getmntpt(spec);
194 spec = mntp->f_mntfromname;
197 if ((fs = getfsfile(spec)) == NULL &&
198 (fs = getfsspec(spec)) == NULL) {
200 vfstype = getfslab(spec);
282 checkfs(const char *pvfstype, const char *spec, const char *mntpt, char *auxopt, pid_t *pidp) argument
[all...]
/freebsd-9.3-release/usr.sbin/pkg_install/lib/
H A Durl.c36 fileGetURL(const char *base, const char *spec, int keep_package) argument
53 if (!isURL(spec)) {
75 strcat(cp, spec);
90 strcat(fname, spec);
98 strcpy(fname, spec);
/freebsd-9.3-release/contrib/cvs/diff/
H A Difdef.c130 char *spec = f; local
195 f = scan_printf_spec (spec);
218 printf_output (spec - 1, value);
227 f = spec;
307 char *spec = f; local
328 f = scan_printf_spec (spec);
350 printf_output (spec - 1, value);
358 f = spec;
416 scan_printf_spec (spec)
417 register char *spec;
[all...]
/freebsd-9.3-release/contrib/libarchive/cpio/
H A Dcmdline.c288 * TODO: If the spec uses uname/gname, then return those to the caller
289 * as well. If the spec provides uid/gid, just return names as NULL.
295 owner_parse(const char *spec, int *uid, int *gid) argument
303 if (spec[0] == '\0')
304 return ("Invalid empty user/group spec");
307 * Split spec into [user][:.][group]
312 if (*spec == ':' || *spec == '.') {
313 /* If spec starts with ':' or '.', then just group. */
315 g = spec
[all...]
/freebsd-9.3-release/include/
H A Dprintf.h50 wchar_t spec; member in struct:printf_info
122 int register_printf_function(int spec, printf_function *render, printf_arginfo_function *arginfo);
125 int register_printf_render(int spec, printf_render *render, printf_arginfo_function *arginfo);
/freebsd-9.3-release/sys/compat/linux/
H A Dtrace_futexes.d115 spec[probefunc] = speculation();
132 discard(spec[probefunc]);
133 spec[probefunc] = 0;
140 /spec["futex_mtx"] != 0 && timestamp - ts["futex_mtx"] >= 9999999000/
142 commit(spec["futex_mtx"]);
143 spec["futex_mtx"] = 0;
/freebsd-9.3-release/contrib/mtree/
H A DMakefile10 SRCS= compare.c crc.c create.c excludes.c misc.c mtree.c spec.c specspec.c \
/freebsd-9.3-release/lib/libc/stdio/
H A Dxprintf.c301 pi->spec = *fmt;
302 switch (pi->spec) {
381 pi->spec += ('a' - 'A');
437 if (printf_tbl[pi->spec].arginfo == NULL)
438 errx(1, "arginfo[%c] = NULL", pi->spec);
439 ch = printf_tbl[pi->spec].arginfo(
517 fprintf(stderr, " spec '%c'", pi->spec);
548 if (printf_tbl[pi->spec].gnurender != NULL) {
551 ret += printf_tbl[pi->spec]
630 register_printf_function(int spec, printf_function *render, printf_arginfo_function *arginfo) argument
642 register_printf_render(int spec, printf_render *render, printf_arginfo_function *arginfo) argument
[all...]
H A Dxprintf_float.c193 switch(pi->spec) {
196 if (pi->spec == 'a') {
225 expchar = pi->spec;
237 expchar = pi->spec - ('g' - 'e');
242 assert(pi->spec == 'f');
265 cp = (pi->spec >= 'a') ? "nan" : "NAN";
268 cp = (pi->spec >= 'a') ? "inf" : "INF";
274 if (pi->spec == 'g' || pi->spec == 'G') {
/freebsd-9.3-release/sbin/mount_nfs/
H A Dmount_nfs.c143 static enum tryret nfs_tryproto(struct addrinfo *ai, char *hostp, char *spec,
154 char *name, *p, *spec, *fstype; local
376 spec = *argv++;
410 if (!getnfsargs(spec, &iov, &iovlen))
699 getnfsargs(char *spec, struct iovec **iov, int *iovlen) argument
708 if (*spec == '[' && (delimp = strchr(spec + 1, ']')) != NULL &&
710 hostp = spec + 1;
711 spec = delimp + 2;
713 } else if ((delimp = strrchr(spec, '
855 nfs_tryproto(struct addrinfo *ai, char *hostp, char *spec, char **errstr, struct iovec **iov, int *iovlen) argument
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dtst.noreap.ksh76 spec = speculation();
77 speculate(spec);

Completed in 156 milliseconds

1234567