Home
last modified time | relevance | path

Searched refs:base (Results 1 – 25 of 1224) sorted by relevance

12345678910>>...49

/onnv-gate/usr/src/common/crypto/arcfour/sun4v/
H A Darcfour_crypt.c70 uchar_t i, j, *base, jj, *base1, tmp; in arcfour_crypt() local
77 base = key->arr; in arcfour_crypt()
119 tmp0 = base[i]; in arcfour_crypt()
121 tmp1 = base[j]; in arcfour_crypt()
122 base[i] = (uchar_t)tmp1; in arcfour_crypt()
123 base[j] = (uchar_t)tmp0; in arcfour_crypt()
126 out[ii] = in[ii] ^ base[tmp0]; in arcfour_crypt()
143 tmp0 = base[i]; in arcfour_crypt()
145 tmp1 = base[j]; in arcfour_crypt()
147 base[i] = (uchar_t)tmp1; in arcfour_crypt()
[all …]
/onnv-gate/usr/src/uts/sun4u/io/px/
H A Dpx_csr.h37 #define CSR_XR(base, off) \ argument
38 (*(volatile uint64_t *)((base) + ((off))))
40 #define CSRA_XR(base, off, index) \ argument
41 (*(volatile uint64_t *)((base) + ((off) + ((index) * 8))))
43 #define CSR_XS(base, off, val) \ argument
44 ((*(volatile uint64_t *)((base) + ((off)))) = (val))
46 #define CSRA_XS(base, off, index, val) \ argument
47 ((*(volatile uint64_t *)((base) + ((off) + ((index) * 8)))) = (val))
50 #define CSR_FR(base, off, bit) \ argument
51 (((*(volatile uint64_t *) ((base) + ((off)))) >> \
[all …]
/onnv-gate/usr/src/uts/common/io/
H A Dpci_cap.c58 uint16_t base, pcix_cmd, status; in pci_cap_probe() local
67 for (i = 0, base = pci_config_get8(h, PCI_CONF_CAP_PTR); in pci_cap_probe()
68 base && i < index; base = pci_config_get8(h, base in pci_cap_probe()
71 if ((id = pci_config_get8(h, base)) == 0xff) in pci_cap_probe()
77 if ((pcix_cmd = pci_config_get16(h, base + in pci_cap_probe()
85 if (base && i == index) { in pci_cap_probe()
86 if ((id = pci_config_get8(h, base)) != 0xff) in pci_cap_probe()
93 for (base = PCIE_EXT_CAP; base && i < index; i++) { in pci_cap_probe()
94 if ((xcaps_hdr = pci_config_get32(h, base)) == PCI_CAP_EINVAL32) in pci_cap_probe()
99 base = (xcaps_hdr >> PCIE_EXT_CAP_NEXT_PTR_SHIFT) in pci_cap_probe()
[all …]
/onnv-gate/usr/src/grub/grub-0.97/netboot/
H A Dforcedeth.c343 static inline void pci_push(u8 * base) in pci_push() argument
346 readl(base); in pci_push()
351 u8 *base = (u8 *) BASE; in reg_delay() local
353 pci_push(base); in reg_delay()
362 } while ((readl(base + offset) & mask) != target); in reg_delay()
395 u8 *base = (u8 *) BASE; in mii_rw() local
400 writel(NVREG_MIISTAT_MASK, base + NvRegMIIStatus); in mii_rw()
402 reg = readl(base + NvRegAdapterControl); in mii_rw()
406 base + NvRegAdapterControl); in mii_rw()
408 reg = readl(base + NvRegMIIControl); in mii_rw()
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dbase.pm19 my($base) = shift;
20 my $fglob = ${"$base\::"}{FIELDS};
25 my($base) = shift;
26 my $vglob = ${$base.'::'}{VERSION};
73 foreach my $base (@_) {
74 next if $inheritor->isa($base);
76 if (has_version($base)) {
77 ${$base.'::VERSION'} = '-1, set by base.pm'
78 unless defined ${$base.'::VERSION'};
82 eval "require $base";
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/File/Spec/t/
H A Dcrossplatform.t49 my ($file, $base, $result);
51 $base = $module->catpath($v, $module->catdir('', 'foo'), '');
52 $base = $module->catdir($module->rootdir, 'foo');
54 is $module->file_name_is_absolute($base), 1, "$base is absolute on $platform";
59 $base = $module->catpath($v, $module->catdir($module->rootdir, 'foo'), '');
61 is $module->abs2rel($file, $base), $result, "$platform->abs2rel($file, $base)";
64 $base = $module->catpath($other_v, $module->catdir($module->rootdir, 'foo'), '');
65 $result = volumes_differ($module, $file, $base) ? $file : $module->catfile('bar', 'file');
66 is $module->abs2rel($file, $base), $result, "$platform->abs2rel($file, $base)";
69 $base = $module->catpath('', $module->catdir($module->rootdir, 'foo'), '');
[all …]
/onnv-gate/usr/src/lib/libadm/common/
H A Dckint.c42 setmsg(char *msg, short base) in setmsg() argument
44 if ((base == 0) || (base == 10)) in setmsg()
47 (void) sprintf(msg, "Please enter a base %d integer.", base); in setmsg()
51 setprmpt(char *prmpt, short base) in setprmpt() argument
53 if ((base == 0) || (base == 10)) in setprmpt()
56 (void) sprintf(prmpt, "Enter a base %d integer.", base); in setprmpt()
60 ckint_val(char *value, short base) in ckint_val() argument
64 (void) strtol(value, &ptr, (int)base); in ckint_val()
71 ckint_err(short base, char *error) in ckint_err() argument
75 setmsg(defmesg, base); in ckint_err()
[all …]
/onnv-gate/usr/src/lib/libast/common/string/
H A Dstrtoi.h203 S2I_function(const char* a, size_t size, char** e, int base)
205 S2I_function(a, size, e, base) const char* a; size_t size; char** e; int base;
217 S2I_function(const char* a, char** e, int base)
219 S2I_function(a, e, base) const char* a; char** e; int base;
238 register int base; local
249 base = basep ? *((unsigned char*)basep) : 0;
251 if (base > 36 && base <= SF_RADIX)
258 base = 1;
261 if (base && (base < 2 || base > SF_RADIX))
273 if (!base)
[all …]
/onnv-gate/usr/src/cmd/loadkeys/type_6/
H A Ddvorak27 key 49 base '\\' shift | caps '\\' ctrl ^\ altg nop
30 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
31 key 31 base 2 shift @ caps 2 ctrl ^@ altg nop
32 key 32 base 3 shift # caps 3 ctrl 3 altg nop
33 key 33 base 4 shift $ caps 4 ctrl 4 altg nop
34 key 34 base 5 shift % caps 5 ctrl 5 altg nop
35 key 35 base 6 shift ^ caps 6 ctrl ^^ altg nop
36 key 36 base 7 shift & caps 7 ctrl 7 altg nop
37 key 37 base 8 shift * caps 8 ctrl 8 altg nop
38 key 38 base 9 shift ( caps 9 ctrl 9 altg nop
[all …]
H A Dcanadian_bilingual30 key 53 base / shift | caps / ctrl ^\ altg '\\'
31 key 30 base 1 shift ! caps 1 ctrl 1 altg �
32 key 31 base 2 shift @ caps 2 ctrl 2 altg nop
33 key 32 base 3 shift # caps 3 ctrl 3 altg �
34 key 33 base 4 shift $ caps 4 ctrl 4 altg �
35 key 34 base 5 shift % caps 5 ctrl 5 altg �
36 key 35 base 6 shift ? caps 6 ctrl 6 altg �
37 key 36 base 7 shift & caps 7 ctrl 7 altg {
38 key 37 base 8 shift * caps 8 ctrl 8 altg }
39 key 38 base 9 shift ( caps 9 ctrl 9 altg [
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/File/Spec/
H A DUnix.pm348 my($self,$path,$base) = @_;
359 if ( !defined( $base ) || $base eq '' ) {
360 $base = $self->_cwd();
362 elsif ( ! $self->file_name_is_absolute( $base ) ) {
363 $base = $self->rel2abs( $base ) ;
366 $base = $self->canonpath( $base ) ;
371 my @basechunks = $self->splitdir( $base);
379 $base = CORE::join( '/', @basechunks );
384 $base =~ s|[^/]+|..|g ;
388 if ( $path ne '' && $base ne '' ) {
[all …]
/onnv-gate/usr/src/cmd/sendmail/libsm/
H A Dstrto.c46 sm_strtoll(nptr, endptr, base)
49 register int base; variable
79 if ((base == 0 || base == 16) &&
84 base = 16;
86 if (base == 0)
87 base = c == '0' ? 8 : 10;
109 cutlim = cutoff % base;
110 cutoff /= base;
115 cutlim -= base;
128 if (c >= base)
[all …]
/onnv-gate/usr/src/cmd/loadkeys/type_101/
H A Dturkey31 key 1 base '"' shift � caps '"' ctrl '"' altg nop
32 key 2 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 3 base 2 shift '\'' caps 2 ctrl 2 altg nop
34 key 4 base 3 shift fa_cflex caps 3 ctrl 3 altg #
35 key 5 base 4 shift + caps 4 ctrl 4 altg $
36 key 6 base 5 shift % caps 5 ctrl 5 altg nop
37 key 7 base 6 shift & caps 6 ctrl 6 altg nop
38 key 8 base 7 shift / caps 7 ctrl 7 altg {
39 key 9 base 8 shift ( caps 8 ctrl 8 altg [
40 key 10 base 9 shift ) caps 9 ctrl 9 altg ]
[all …]
H A Dczech31 key 1 base ; shift � caps ; ctrl ; altg nop
32 key 2 base + shift 1 caps + ctrl + altg ~
33 key 3 base nop shift 2 caps nop ctrl nop altg nop
34 key 4 base nop shift 3 caps nop ctrl nop altg fa_cflex
35 key 5 base nop shift 4 caps nop ctrl nop altg nop
36 key 6 base nop shift 5 caps nop ctrl nop altg nop
37 key 7 base nop shift 6 caps nop ctrl nop altg nop
38 key 8 base � shift 7 caps � ctrl � altg `
39 key 9 base � shift 8 caps � ctrl � altg nop
40 key 10 base � shift 9 caps � ctrl � altg fa_acute
[all …]
H A Dj310031 key 1 base ` shift ~ caps ` ctrl ` altg nop
32 key 2 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 3 base 2 shift @ caps 2 ctrl 2 altg nop
34 key 4 base 3 shift # caps 3 ctrl 3 altg nop
35 key 5 base 4 shift $ caps 4 ctrl 4 altg nop
36 key 6 base 5 shift % caps 5 ctrl 5 altg nop
37 key 7 base 6 shift ^ caps 6 ctrl ^^ altg nop
38 key 8 base 7 shift & caps 7 ctrl 7 altg nop
39 key 9 base 8 shift * caps 8 ctrl 8 altg nop
40 key 10 base 9 shift ( caps 9 ctrl 9 altg nop
[all …]
H A Dhungary32 key 1 base 0 shift � caps � ctrl 0 altg nop
33 key 2 base 1 shift '\'' caps 1 ctrl 1 altg ~
34 key 3 base 2 shift '"' caps 2 ctrl 2 altg nop
35 key 4 base 3 shift + caps 3 ctrl 3 altg fa_cflex
36 key 5 base 4 shift ! caps 4 ctrl 4 altg nop
37 key 6 base 5 shift % caps 5 ctrl 5 altg nop
38 key 7 base 6 shift / caps 6 ctrl 6 altg nop
39 key 8 base 7 shift = caps 7 ctrl 7 altg `
40 key 9 base 8 shift ( caps 8 ctrl 8 altg nop
41 key 10 base 9 shift ) caps 9 ctrl 9 altg fa_acute
[all …]
H A Dpoland32 key 2 base 1 shift ! caps 1 ctrl 1 altg ~
33 key 3 base 2 shift " caps 2 ctrl 2 altg nop
34 key 4 base 3 shift # caps 3 ctrl 3 altg fa_cflex
35 key 5 base 4 shift � caps 4 ctrl 4 altg nop
36 key 6 base 5 shift % caps 5 ctrl 5 altg nop
37 key 7 base 6 shift & caps 6 ctrl 6 altg nop
38 key 8 base 7 shift / caps 7 ctrl 7 altg `
39 key 9 base 8 shift ( caps 8 ctrl 8 altg nop
40 key 10 base 9 shift ) caps 9 ctrl 9 altg fa_acute
41 key 11 base 0 shift = caps 0 ctrl 0 altg nop
[all …]
/onnv-gate/usr/src/cmd/loadkeys/type_4/
H A Ddenmark30 key 88 base � shift � caps � ctrl � altg nop
31 key 15 base ~ shift ^ caps ~ ctrl ^^ altg nop
32 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 31 base 2 shift '"' caps 2 ctrl ^@ altg @
34 key 32 base 3 shift # caps 3 ctrl 3 altg �
35 key 33 base 4 shift � caps 4 ctrl 4 altg $
36 key 34 base 5 shift % caps 5 ctrl 5 altg nop
37 key 35 base 6 shift & caps 6 ctrl 6 altg nop
38 key 36 base 7 shift / caps 7 ctrl 7 altg {
39 key 37 base 8 shift ( caps 8 ctrl ^[ altg [
[all …]
H A Dswiss_french30 key 88 base < shift { caps < ctrl < altg nop
31 key 15 base > shift } caps > ctrl > altg nop
32 key 30 base 1 shift + caps 1 ctrl 1 altg !
33 key 31 base 2 shift '"' caps 2 ctrl ^@ altg @
34 key 32 base 3 shift * caps 3 ctrl 3 altg #
35 key 33 base 4 shift � caps 4 ctrl 4 altg �
36 key 34 base 5 shift % caps 5 ctrl 5 altg ~
37 key 35 base 6 shift & caps 6 ctrl 6 altg �
38 key 36 base 7 shift / caps 7 ctrl 7 altg |
39 key 37 base 8 shift ( caps 8 ctrl 8 altg �
[all …]
H A Dportugal30 key 88 base [ shift { caps [ ctrl ^[ altg �
31 key 15 base ] shift } caps ] ctrl ^] altg �
32 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 31 base 2 shift '"' caps 2 ctrl ^@ altg @
34 key 32 base 3 shift # caps 3 ctrl 3 altg �
35 key 33 base 4 shift $ caps 4 ctrl 4 altg �
36 key 34 base 5 shift % caps 5 ctrl 5 altg nop
37 key 35 base 6 shift & caps 6 ctrl 6 altg �
38 key 36 base 7 shift / caps 7 ctrl 7 altg nop
39 key 37 base 8 shift ( caps 8 ctrl 8 altg nop
[all …]
H A Dgermany30 key 88 base [ shift { caps [ ctrl ^[ altg �
31 key 15 base ] shift } caps ] ctrl ^] altg �
32 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 31 base 2 shift '"' caps 2 ctrl 2 altg �
34 key 32 base 3 shift � caps 3 ctrl 3 altg �
35 key 33 base 4 shift $ caps 4 ctrl 4 altg nop
36 key 34 base 5 shift % caps 5 ctrl 5 altg nop
37 key 35 base 6 shift & caps 6 ctrl 6 altg nop
38 key 36 base 7 shift / caps 7 ctrl 7 altg �
39 key 37 base 8 shift ( caps 8 ctrl 8 altg `
[all …]
H A Dsweden_finland30 key 88 base � shift � caps � ctrl � altg nop
31 key 15 base ~ shift ^ caps ~ ctrl ^^ altg nop
32 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 31 base 2 shift '"' caps 2 ctrl ^@ altg @
34 key 32 base 3 shift # caps 3 ctrl 3 altg �
35 key 33 base 4 shift � caps 4 ctrl 4 altg $
36 key 34 base 5 shift % caps 5 ctrl 5 altg nop
37 key 35 base 6 shift & caps 6 ctrl 6 altg nop
38 key 36 base 7 shift / caps 7 ctrl 7 altg {
39 key 37 base 8 shift ( caps 8 ctrl ^[ altg [
[all …]
H A Ditaly30 key 88 base [ shift { caps [ ctrl ^[ altg �
31 key 15 base ] shift } caps ] ctrl ^] altg �
32 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 31 base 2 shift '"' caps 2 ctrl 2 altg �
34 key 32 base 3 shift � caps 3 ctrl 3 altg �
35 key 33 base 4 shift $ caps 4 ctrl 4 altg nop
36 key 34 base 5 shift % caps 5 ctrl 5 altg nop
37 key 35 base 6 shift & caps 6 ctrl 6 altg �
38 key 36 base 7 shift / caps 7 ctrl 7 altg nop
39 key 37 base 8 shift ( caps 8 ctrl 8 altg nop
[all …]
H A Dspain_latin_america30 key 88 base [ shift { caps [ ctrl ^[ altg �
31 key 15 base ] shift } caps ] ctrl ^] altg �
32 key 30 base 1 shift ! caps 1 ctrl 1 altg nop
33 key 31 base 2 shift '"' caps 2 ctrl ^@ altg @
34 key 32 base 3 shift � caps 3 ctrl 3 altg #
35 key 33 base 4 shift $ caps 4 ctrl 4 altg nop
36 key 34 base 5 shift % caps 5 ctrl 5 altg �
37 key 35 base 6 shift & caps 6 ctrl 6 altg �
38 key 36 base 7 shift / caps 7 ctrl 7 altg nop
39 key 37 base 8 shift ( caps 8 ctrl 8 altg nop
[all …]
/onnv-gate/usr/src/lib/libtnf/
H A Darray.c40 struct taginfo **base,
73 struct taginfo *info, *base, *elt, *elt_base; in get_array_info() local
76 base = INFO_DERIVED(info) ? info->base : info; in get_array_info()
78 if (INFO_DERIVED(base) || (!INFO_ARRAY(base))) in get_array_info()
81 elt = base->base; /* XXX base slot is reused for elttype */ in get_array_info()
82 elt_base = INFO_DERIVED(elt) ? elt->base : elt; in get_array_info()
84 *basep = base; in get_array_info()
98 struct taginfo *base, *elt, *elt_base; in tnf_get_element_count() local
102 (void) get_array_info(datum, &base, &elt, &elt_base); in tnf_get_element_count()
103 hdr_size = base->hdrsize; in tnf_get_element_count()
[all …]

12345678910>>...49