Searched refs:str (Results 251 - 275 of 1897) sorted by relevance

<<11121314151617181920>>

/freebsd-9.3-release/sys/xen/interface/
H A Dlibelf.h117 #define elf_uval(elf, str, elem) \
119 ? elf_access_unsigned((elf), (str), \
120 offsetof(typeof(*(str)),e64.elem), \
121 sizeof((str)->e64.elem)) \
122 : elf_access_unsigned((elf), (str), \
123 offsetof(typeof(*(str)),e32.elem), \
124 sizeof((str)->e32.elem)))
126 #define elf_sval(elf, str, elem) \
128 ? elf_access_signed((elf), (str), \
129 offsetof(typeof(*(str)),e6
212 const char *str; member in union:xen_elfnote::__anon10603
[all...]
/freebsd-9.3-release/usr.sbin/ndiscvt/
H A Dinf-parse.y49 %token <str> SECTION
50 %token <str> STRING
51 %token <str> WORD
54 char *str;
/freebsd-9.3-release/contrib/ntp/scripts/stats/
H A Dloop.S4 str <- paste("eps/", file1, ".eps", sep="") label
5 postscript(str, , , , 5, pointsize=18)
/freebsd-9.3-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_hash.c98 const char *str = ctsp->cts_strs + CTF_NAME_OFFSET(name); local
114 if (str[0] == '\0')
119 h = ctf_hash_compute(str, strlen(str)) % hp->h_nbuckets;
134 const char *str = ctf_strptr(fp, name); local
135 ctf_helem_t *hep = ctf_hash_lookup(hp, fp, str, strlen(str));
149 const char *str; local
157 str = ctsp->cts_strs + CTF_NAME_OFFSET(hep->h_name);
159 if (strncmp(key, str, le
[all...]
/freebsd-9.3-release/contrib/nvi/common/
H A Dmsg.c61 const char *str; /* String pointer. */ member in struct:__anon3814
66 } str[__NL_ARGMAX]; local
216 str[soff].str = t;
217 str[soff].prefix = u - t;
220 str[soff].arg = atoi(u);
221 str[soff].skip = (p - u) + 1;
222 if (str[soff].arg >= __NL_ARGMAX)
230 str[soff].suffix = p - u;
261 if (cnt1 == str[cnt
[all...]
/freebsd-9.3-release/sbin/geom/class/journal/
H A Dgeom_journal.c140 const char *data, *journal, *str; local
146 str = NULL; /* gcc */
167 str = gctl_get_ascii(req, "arg%d", i);
168 if (g_get_mediasize(str) == 0) {
169 gctl_error(req, "Invalid provider %s.", str);
242 str = gctl_get_ascii(req, "arg%d", i);
243 error = g_metadata_clear(str, NULL);
245 gctl_error(req, "Cannot clear metadata on %s: %s.", str,
257 str = data;
263 str
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dasn1_lib.c336 ASN1_STRING *ASN1_STRING_dup(ASN1_STRING *str) argument
340 if (str == NULL)
342 if ((ret = ASN1_STRING_type_new(str->type)) == NULL)
344 if (!ASN1_STRING_set(ret, str->data, str->length)) {
348 ret->flags = str->flags;
352 int ASN1_STRING_set(ASN1_STRING *str, const void *_data, int len) argument
363 if ((str->length < len) || (str->data == NULL)) {
364 c = str
385 ASN1_STRING_set0(ASN1_STRING *str, void *data, int len) argument
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dada-lex.l838 find_dot_all (str)
839 const char* str;
842 for (i = 0; str[i] != '\000'; i += 1)
844 if (str[i] == '.')
849 while (isspace (str[i]));
850 if (strcmp (str+i, "all") == 0
851 && ! isalnum (str[i+3]) && str[i+3] != '_')
862 subseqMatch (subseq, str)
864 const char* str;
[all...]
H A Duser-regs.h49 const char *str, int len);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Dkstat.d48 this->str = copyinstr(self->ksname);
50 printf("%s has ui64 value %u\n", this->str, this->ksp->value.ui64);
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dstabs.c187 char *str; local
235 str = (char *)stack_pop(file_stack);
236 free(str);
250 if ((str = elf_strptr(elf, stabstridx,
257 curhdr = xstrdup(str);
261 if (str[strlen(str) - 1] != '/') {
262 strcpy(curpath, str);
267 if (strcmp(str, "gcc2_compiled.") == 0) {
274 if (str[strle
[all...]
/freebsd-9.3-release/contrib/groff/src/preproc/eqn/
H A Deqn.h41 void init_lex(const char *str, const char *filename, int lineno);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DUndefinedAssignmentChecker.cpp54 const char *str = "Assigned value is garbage or undefined"; local
57 BT.reset(new BuiltinBug(str));
67 str = "The left expression of the compound assignment is an "
86 BugReport *R = new BugReport(*BT, str, N);
/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dlib_addstr.c52 const char *str = astr; local
57 if (win && (str != 0)) {
64 TR(TRACE_VIRTPUT, ("str is not null, length = %d", n));
65 while ((n-- > 0) && (*str != '\0')) {
67 TR(TRACE_VIRTPUT, ("*str = %#o", UChar(*str)));
68 SetChar(ch, UChar(*str++), A_NORMAL);
96 const chtype *str; local
98 for (str = (const chtype *) astr; *str !
216 waddnwstr(WINDOW *win, const wchar_t *str, int n) argument
[all...]
/freebsd-9.3-release/contrib/sendmail/libsm/
H A Dsnprintf.c27 ** str -- memory location to place formatted string
28 ** n -- size of buffer pointed to by str, capped to
36 ** to str, not including the trailing '\0',
43 ** are written into 'str', followed by a '\0'.
48 sm_snprintf(char *str, size_t n, char const *fmt, ...) argument
50 sm_snprintf(str, n, fmt, va_alist)
51 char *str;
71 fake.f_bf.smb_base = fake.f_p = (unsigned char *)str;
H A Dvasprintf.c41 ** str -- *str receives a pointer to the allocated string
46 ** On failure, set *str to NULL, set errno, and return -1.
48 ** On success, set *str to a pointer to a nul-terminated
56 sm_vasprintf(str, fmt, ap)
57 char **str;
91 *str = (char *)base;
101 *str = NULL;
H A Dvsnprintf.c24 ** Assigned 'str' to a "fake" file pointer. This allows common
28 ** str -- location for output
41 sm_vsnprintf(str, n, fmt, ap)
42 char *str;
58 str = &dummy;
66 fake.f_bf.smb_base = fake.f_p = (unsigned char *)str;
/freebsd-9.3-release/contrib/tcp_wrappers/
H A Dmisc.c92 unsigned long dot_quad_addr(str)
93 char *str;
97 char *cp = str;
110 return (runs == 4 ? inet_addr(str) : INADDR_NONE);
/freebsd-9.3-release/lib/libc/posix1e/
H A Dacl_support.h48 int _nfs4_format_flags(char *str, size_t size, acl_flag_t var, int verbose);
49 int _nfs4_format_access_mask(char *str, size_t size, acl_perm_t var, int verbose);
50 int _nfs4_parse_flags(const char *str, acl_flag_t *var);
51 int _nfs4_parse_access_mask(const char *str, acl_perm_t *var);
/freebsd-9.3-release/lib/libc/stdio/
H A Dsnprintf.c52 snprintf(char * __restrict str, size_t n, char const * __restrict fmt, ...) argument
66 f._bf._base = f._p = (unsigned char *)str;
75 snprintf_l(char * __restrict str, size_t n, locale_t locale, argument
91 f._bf._base = f._p = (unsigned char *)str;
/freebsd-9.3-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_string.c102 strfree(char *str) argument
104 ASSERT(str != NULL);
105 kmem_free(str, strlen(str) + 1);
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_str.h36 extern char *uwx_alloc_str(struct uwx_env *env, char *str);
/freebsd-9.3-release/sys/dev/qlxge/
H A Dqls_inline.h81 qls_lock(qla_host_t *ha, const char *str, uint32_t no_delay) argument
89 ha->qla_lock = str;
105 qls_unlock(qla_host_t *ha, const char *str) argument
109 ha->qla_unlock = str;
/freebsd-9.3-release/sys/sys/
H A Dfnv_hash.h35 fnv_32_str(const char *str, Fnv32_t hval) argument
37 const u_int8_t *s = (const u_int8_t *)str;
60 fnv_64_str(const char *str, Fnv64_t hval) argument
62 const u_int8_t *s = (const u_int8_t *)str;
/freebsd-9.3-release/usr.bin/csup/
H A Dparse.y38 char *str;
46 %token <str> STRING

Completed in 228 milliseconds

<<11121314151617181920>>