Home
last modified time | relevance | path

Searched refs:base (Results 501 – 525 of 1147) sorted by relevance

1...<<21222324252627282930>>...46

/illumos-gate/usr/src/lib/libldap5/include/ldap/
H A Ddisptmpl.h340 ldap_entry2text_search( LDAP *ld, char *dn, char *base, LDAPMessage *entry,
350 unsigned long opts, char *urlprefix, char *base );
360 ldap_entry2html_search( LDAP *ld, char *dn, char *base, LDAPMessage *entry,
/illumos-gate/usr/src/uts/common/pcmcia/cs/
H A Dcs.c5520 ior->BasePort1.base = ior->BasePort1.base &
5523 ior->BasePort2.base = ior->BasePort2.base &
5573 set_window.base.base = 0;
5651 baseaddru.base = ior->BasePort1.base;
5684 ior->BasePort1.base = baseaddru.base;
5692 baseaddru.base = ior->BasePort2.base;
5741 ior->BasePort2.base = baseaddru.base;
6097 set_window.base = Base->base;
6107 Base->base = set_window.base;
6684 uint32_t base = client->io_alloc.BasePort1.base;
[all …]
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_lib.c389 caddr_t base = mmap64(NULL, sp->cts_size + pageoff, PROT_READ, in ctf_sect_mmap() local
392 if (base != MAP_FAILED) in ctf_sect_mmap()
393 sp->cts_data = base + pageoff; in ctf_sect_mmap()
395 return (base); in ctf_sect_mmap()
753 static char *base; in ctf_phase_dump() local
756 if (base == NULL && (base = getenv("LIBCTF_WRITE_PHASES")) == NULL) in ctf_phase_dump()
762 (void) snprintf(path, sizeof (path), "%s/%s.%s.%d.ctf", base, name, in ctf_phase_dump()
/illumos-gate/usr/src/common/mc/zen_umc/
H A Dzen_umc_dump.c58 nvlist_t *base = fnvlist_alloc(); in zen_umc_dump_cs() local
61 fnvlist_add_uint64(base, "udb_base", cs->ucs_base.udb_base); in zen_umc_dump_cs()
62 fnvlist_add_uint8(base, "udb_valid", cs->ucs_base.udb_valid); in zen_umc_dump_cs()
63 fnvlist_add_nvlist(nvl, "ucs_base", base); in zen_umc_dump_cs()
64 nvlist_free(base); in zen_umc_dump_cs()
369 nvlist_t *base, *sec; in zen_umc_restore_cs() local
374 "ucs_base", DATA_TYPE_NVLIST, &base, in zen_umc_restore_cs()
413 if (nvlist_lookup_pairs(base, 0, in zen_umc_restore_cs()
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppd/
H A Doptions.c168 static int number_option __P((char *str, u_int32_t *valp, int base));
1394 number_option(str, valp, base) in number_option() argument
1397 int base;
1401 *valp = strtoul(str, &ptr, base);
1827 register u_int32_t val, base, n; local
1840 val = 0; base = 10;
1843 base = 16, cp++;
1845 base = 8;
1849 if ((c - '0') >= base)
1851 val = (val * base) + (c - '0');
[all …]
/illumos-gate/usr/src/tools/smatch/src/
H A Dparse.dtd15 base-type IDREF #IMPLIED
16base-type-builtin (char|signed char|unsigned char|short|signed short|unsigned short|int|signed int…
H A Devaluate.c390 *base = type; in classify_type()
589 struct symbol *ctype, *base; in evaluate_ptr_add() local
602 if (!base) { in evaluate_ptr_add()
606 if (is_function(base)) { in evaluate_ptr_add()
612 multiply = is_void_type(base) ? 1 : bits_to_bytes(base->bit_size); in evaluate_ptr_add()
1564 mark_assigned(expr->base); in mark_assigned()
1708 switch (base->type) { in degenerate()
1729 e2->right = expr->base; in degenerate()
2118 expr->base = deref; in evaluate_member_dereference()
2121 expr->base = deref->base; in evaluate_member_dereference()
[all …]
H A Dc2xml.c173 const char *base; in examine_symbol() local
189 if ((base = builtin_typename(sym->ctype.base_type)) == NULL) { in examine_symbol()
196 newProp(child, "base-type-builtin", base); in examine_symbol()
/illumos-gate/usr/src/uts/sun4u/serengeti/sys/
H A Dsbdp_mem.h136 #define MC_BASE2UM(base) (((base) & 0x1fffffu) << MC_UM_SHIFT) argument
/illumos-gate/usr/src/lib/iconv_modules/vi/common/
H A Dtcvn%viscii.c192 if (x < (unsigned short)v[mid].base) in binsearch()
194 else if (x > (unsigned short)v[mid].base) in binsearch()
/illumos-gate/usr/src/uts/common/io/i40e/
H A Di40e_stats.c107 uint64_t *base, boolean_t init) in i40e_stat_get_uint48() argument
118 *base = raw; in i40e_stat_get_uint48()
126 if (raw >= *base) { in i40e_stat_get_uint48()
127 delta = raw - *base; in i40e_stat_get_uint48()
133 *base = raw; in i40e_stat_get_uint48()
138 uint64_t *base, boolean_t init) in i40e_stat_get_uint32() argument
149 *base = raw; in i40e_stat_get_uint32()
156 if (raw >= *base) { in i40e_stat_get_uint32()
157 delta = raw - *base; in i40e_stat_get_uint32()
159 delta = 0x100000000ULL - *base + raw; in i40e_stat_get_uint32()
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/chat/
H A Dchat.c1574 int base, len, neg, quoted; local
1627 base = 0;
1638 base = 10;
1642 base = 8;
1646 base = 16;
1650 base = 16;
1717 if (base != 0) {
1721 *--str = hexchars[val % base];
1722 val = val / base;
/illumos-gate/usr/src/cmd/mdb/intel/modules/xhci/
H A Dxhci.c809 uint64_t base, max, target; in xhci_mdb_find_trb() local
842 base = xr.xr_dma.xdb_cookies[0].dmac_laddress; in xhci_mdb_find_trb()
843 max = base + xr.xr_ntrb * sizeof (xhci_trb_t); in xhci_mdb_find_trb()
845 if (target < base || target > max) { in xhci_mdb_find_trb()
847 "TRBs in the ring [%p, %p)", target, base, max); in xhci_mdb_find_trb()
850 target -= base; in xhci_mdb_find_trb()
/illumos-gate/usr/src/cmd/abi/appcert/scripts/
H A Dsymprof.pl783 my ($soname, $base, $full);
803 $base = basename($soname);
804 $dtneededs_lookup_base{$base}{$dir} = 1;
840 $base = basename($path_to_object);
846 if (defined($dtneededs_lookup_base{$base})) {
848 @dirlist = keys(%{$dtneededs_lookup_base{$base}});
/illumos-gate/usr/src/cmd/troff/troff.d/
H A Dt6.c496 int base, wid; in setwd() local
501 base = numtab[ST].val = wid = numtab[CT].val = 0; in setwd()
524 base -= k; in setwd()
528 if (base < numtab[SB].val) in setwd()
529 numtab[SB].val = base; in setwd()
530 if ((k = base + emsz) > numtab[ST].val) in setwd()
/illumos-gate/usr/src/cmd/fm/schemes/mem/
H A Dmem_unum.c129 char *base; in mem_unum_burst_sgsc() local
154 base = strtok(copy, " "); in mem_unum_burst_sgsc()
160 (void) snprintf(buf, sizeof (buf), "%s/D%d", base, i); in mem_unum_burst_sgsc()
/illumos-gate/usr/src/cmd/sgs/ar/common/
H A Dfile.c52 char *base; /* Base of string table memory */ member
801 arwrite(filename, fd, sym_strtbl.base, sym_strtbl.used); in writesymtab()
855 if (strtbl->base == NULL) in strtbl_alloc()
882 strtbl->base = realloc(strtbl->base, size64); in strtbl_alloc()
883 if (strtbl->base == NULL) { in strtbl_alloc()
929 strtbl->base[strtbl->used++] = ch; in strtbl_pad()
944 (void) strcpy(sym_strtbl.base + sym_strtbl.used, symbol); in savename()
990 p = long_strtbl.base + long_strtbl.used; in savelongname()
1213 arwrite(name, ar_outfile.fd, long_strtbl.base, in writefile()
/illumos-gate/usr/src/uts/common/cpr/
H A Dcpr_dump.c512 cpr_xwalk(void *arg, void *base, size_t size) in cpr_xwalk() argument
516 cwip->pages += cpr_count_pages(base, size, in cpr_xwalk()
527 cpr_walk(void *arg, void *base, size_t size) in cpr_walk() argument
529 caddr_t addr = base; in cpr_walk()
542 cpr_xwalk(arg, base, size); in cpr_walk()
579 cpr_walk_kpm(void *arg, void *base, size_t size) in cpr_walk_kpm() argument
583 cwip->pages += cpr_count_pages(base, size, in cpr_walk_kpm()
/illumos-gate/usr/src/lib/udapl/libdat/include/
H A Ddat_osd.h126 #define dat_os_strtol(nptr, endptr, base) strtol((nptr), (endptr), (base)) argument
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dpackage.sh6131 base) y=$p.base ;;
6173 base) # base archive
6263 $r:*) y=$p.base
6981 j="$name.$base$i.$suffix"
7004 lcl=$name.$base.$suffix
7017 *) lcl=$name.$base.$sync.$suffix
7024 case $base:$base_size in
7028 '') lcl=$name.$base.$suffix
7038 *) lcl=$name.$delta.$base.$suffix
7088 lcl=$name.$base.$type.$suffix
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/lua/
H A Dlparser.c277 if (!base) in singlevaraux()
825 int base, nparams; in funcargs() local
852 base = f->u.info; /* base register for call */ in funcargs()
858 nparams = fs->freereg - (base+1); in funcargs()
1297 endfor = luaK_codeAsBx(fs, OP_FORLOOP, base, NO_JUMP); in forbody()
1299 luaK_codeABC(fs, OP_TFORCALL, base, 0, nvars); in forbody()
1301 endfor = luaK_codeAsBx(fs, OP_TFORLOOP, base + 2, NO_JUMP); in forbody()
1311 int base = fs->freereg; in fornum() local
1326 forbody(ls, base, line, 1, 1); in fornum()
1336 int base = fs->freereg; in forlist() local
[all …]
/illumos-gate/usr/src/lib/libdwarf/common/
H A Dgennames.c257 open_path(const char *base, const char *file, const char *direction) in open_path() argument
265 size_t netlen = strlen(file) +strlen(base) + 2; in open_path()
268 printf("Error opening '%s/%s', name too long\n",base,file); in open_path()
272 strcpy(path_name,base); in open_path()
/illumos-gate/usr/src/uts/common/io/
H A Dksyms.c284 caddr_t base; in ksyms_symtbl_copy() local
294 base = kip->ksyms_base + off; in ksyms_symtbl_copy()
297 if (copyin(base, buf, size)) in ksyms_symtbl_copy()
306 base += size; in ksyms_symtbl_copy()
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dassfail.c134 ultos(uint64_t n, int base, char *s) in ultos() argument
140 *cp++ = "0123456789abcdef"[n%base]; in ultos()
141 n /= base; in ultos()
143 if (base == 16) { in ultos()
/illumos-gate/usr/src/boot/i386/libi386/
H A Dbiossmap.c148 (unsigned long long)smapbase[i].base, in command_smap()
155 (unsigned long long)smapbase[i].base, in command_smap()

1...<<21222324252627282930>>...46