HomeSort by relevance Sort by last modified time
    Searched refs:type (Results 1 - 25 of 3727) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/uts/intel/amd64/krtld/
kobj_convrelstr.c 61 conv_reloc_amd64_type(Word type)
66 if (type < R_AMD64_NUM)
67 return (rels[type]);
71 strbuf[ndx--] = '0' + (type % 10);
72 type = type / 10;
73 } while ((ndx >= (int)0) && (type > (Word)0));
  /onnv/onnv-gate/usr/src/uts/intel/ia32/krtld/
kobj_convrelstr.c 64 conv_reloc_386_type(Word type)
69 if (type < R_386_NUM)
70 return (rels[type]);
74 strbuf[ndx--] = '0' + (type % 10);
75 type = type / 10;
76 } while ((ndx >= (int)0) && (type > (Word)0));
  /onnv/onnv-gate/usr/src/uts/sparc/krtld/
kobj_convrelstr.c 88 conv_reloc_SPARC_type(Word type)
93 if (type < R_SPARC_NUM)
94 return (rels[type]);
98 strbuf[ndx--] = '0' + (type % 10);
99 type = type / 10;
100 } while ((ndx >= (int)0) && (type > (Word)0));
  /onnv/onnv-gate/usr/src/cmd/audio/include/
libaudio_impl.h 64 #define MALLOC(type) \
65 (type *)(long)malloc(sizeof (type))
66 #define CALLOC(number, type) \
67 (type *)(long)calloc((unsigned)(number), sizeof (type))
68 #define REALLOC(ptr, number, type) \
69 (type *)(long)realloc((char *)(ptr), (unsigned)(number) * sizeof (type))
  /onnv/onnv-gate/usr/src/cmd/sgs/tsort/common/
zfopen.c 42 zfopen(int severity, char *path, char *type)
46 if ((fp = fopen(path, type)) == NULL) {
49 if (type[1] == '+')
52 switch (type[0]) {
63 mode = type;
  /onnv/onnv-gate/usr/src/lib/libast/common/sfio/
sfmutex.c 31 int sfmutex(Sfio_t* f, int type)
33 int sfmutex(f, type)
35 int type;
39 NOTUSED(f); NOTUSED(type);
59 if(type == SFMTX_LOCK)
61 else if(type == SFMTX_TRYLOCK)
63 else if(type == SFMTX_UNLOCK)
65 else if(type == SFMTX_CLRLOCK)
  /onnv/onnv-gate/usr/src/lib/libast/common/stdio/
_stdvbuf.c 29 _stdsetvbuf(Sfio_t* f, char* buf, int type, size_t size)
31 return setvbuf(f, buf, type, size);
  /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/
dispatch.c 42 dispatch_protocol_error(int type, u_int32_t seq, void *ctxt)
44 log("dispatch_protocol_error: type %d seq %u", type, seq);
53 dispatch_protocol_ignore(int type, u_int32_t seq, void *ctxt)
55 log("dispatch_protocol_ignore: type %d seq %u", type, seq);
76 dispatch_set(int type, dispatch_fn *fn)
78 dispatch[type] = fn;
84 int type; local
88 type = packet_read_seqnr(&seqnr)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lvm/metassist/layout/
layout_messages.h 44 extern void print_layout_volume_msg(char *type, uint64_t nbytes);
45 extern void print_layout_explicit_msg(char *type);
47 extern void print_layout_submirrors_msg(char *type, uint64_t nbytes, int nsubs);
48 extern void print_layout_submirrors_failed_msg(char *type, int count,
51 extern void print_populate_volume_msg(char *type, uint64_t nbytes);
52 extern void print_populate_volume_ncomps_msg(char *type, uint64_t nbytes,
61 extern void print_insufficient_resources_msg(char *type);
  /onnv/onnv-gate/usr/src/cmd/sgs/libconv/common/
relocate.c 38 conv_reloc_type(Half mach, Word type, Conv_fmt_flags_t fmt_flags,
43 return (conv_reloc_386_type(type, fmt_flags, inv_buf));
48 return (conv_reloc_SPARC_type(type, fmt_flags, inv_buf));
51 return (conv_reloc_amd64_type(type, fmt_flags, inv_buf));
54 /* If didn't match a machine type, use integer value */
55 return (conv_invalid_val(inv_buf, type, fmt_flags));
63 conv_reloc_type_static(Half mach, Word type, Conv_fmt_flags_t fmt_flags)
67 return (conv_reloc_type(mach, type, fmt_flags, &inv_buf));
data.c 36 conv_elfdata_type(Elf_Type type, Conv_inv_buf_t *inv_buf)
52 if (type >= ELF_T_NUM)
53 return (conv_invalid_val(inv_buf, type, 0));
55 return (MSG_ORIG(types[type]));
  /onnv/onnv-gate/usr/src/lib/libwrap/
mystdarg.h 15 #define VARARGS(func,type,arg) func(type arg, ...)
16 #define VASTART(ap,type,name) va_start(ap,name)
20 #define VARARGS(func,type,arg) func(va_alist) va_dcl
21 #define VASTART(ap,type,name) {type name; va_start(ap); name = va_arg(ap, type)
  /onnv/onnv-gate/usr/src/cmd/lp/cmd/lpadmin/
send_message.c 53 int type,
57 send_message (type, va_alist)
58 int type;
73 va_start (ap, type);
78 (void)_putmessage (msgbuf, type, ap);
  /onnv/onnv-gate/usr/src/cmd/lp/lib/msgs/
getmessage.c 39 int getmessage ( char * buf, short type, ... )
41 int getmessage (buf, type, va_alist)
43 short type;
52 va_start(arg, type);
57 rval = _getmessage(buf, type, arg);
putmessage.c 37 int putmessage(char * buf, short type, ... )
39 int putmessage(buf, type, va_alist)
41 short type;
50 va_start(arg, type);
55 size = _putmessage(buf, type, arg);
  /onnv/onnv-gate/usr/src/cmd/mail/
doopen.c 37 doopen(file, type, errnum)
38 char *type, *file;
45 (fptr = fopen(file, type)) == NULL) {
47 "%s: Can't open '%s' type: %s\n",program,file,type);
50 Dout(pn, 0, "can't open '%s' type: %s\n",program,file,type);
isit.c 35 * isit(lp, type) -- match "name" portion of
38 * type -> type of header line to match
40 * TRUE -> lp matches header type (case independent)
43 * Execpt for H_FORM type, matching is case insensitive (bug 1173101)
46 isit(lp, type)
48 register int type;
52 switch (type) {
54 for (p = header[type].tag; *lp && *p; lp++, p++) {
61 for (p = header[type].tag; *lp && *p; lp++, p++)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/libsmutil/
lockfile.c 28 ** type -- type of the lock. Bits can be:
39 lockfile(fd, filename, ext, type)
43 int type;
50 if (bitset(LOCK_UN, type))
52 else if (bitset(LOCK_EX, type))
56 if (bitset(LOCK_NB, type))
67 ** as type "tmp" (that is, served from swap space), the
78 if (flock(fd, type) >= 0)
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
V3.m_newterm.c 49 m_newterm(char *type, FILE *outfptr, FILE *infptr)
51 return (newterm(type, outfptr, infptr));
V3.newterm.c 51 newterm(char *type, FILE *outfptr, FILE *infptr)
54 return (newscreen(type, 0, 0, 0, outfptr, infptr));
_newterm.c 49 newterm(char *type, FILE *fout, FILE *fin)
51 return (newscreen(type, 0, 0, 0, fout, fin));
  /onnv/onnv-gate/usr/src/uts/sun4u/io/px/
px_asm_4u.h 37 int type);
39 int type);
  /onnv/onnv-gate/usr/src/cmd/lp/lib/lp/
isterminfo.c 48 * that a type names a valid entry in the Terminfo database.
59 * submitting print requests with goofball types, or every valid type
66 * database. The "terminfo" type is not likely to be an oft used feature,
104 ** isterminfo() - SEE IF TYPE IS IN TERMINFO DATABASE
110 char * type
113 isterminfo (type)
114 char *type;
122 if (!type || !*type)
126 if (tfind(type, (A2)&hit_cache, (A3)strcmp)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
OpenElement.cxx 15 OpenElement::OpenElement(const ElementType *type,
20 : elementType_(type),
23 matchState_(type->definition()->compiledModelGroup()),
26 declaredContent_(type->definition()->declaredContent())
NotationStorage.cxx 16 NotationStorageManager::NotationStorageManager(const char *type)
17 : type_(type)
26 const char *NotationStorageManager::type() const function in class:SP_NAMESPACE::NotationStorageManager

Completed in 599 milliseconds

1 2 3 4 5 6 7 8 91011>>