Home
last modified time | relevance | path

Searched refs:big (Results 1 – 25 of 144) sorted by relevance

123456

/onnv-gate/usr/src/common/lvm/
H A Dmd_convert.c205 stripe_convert(caddr_t small, caddr_t big, int direction) in stripe_convert() argument
210 ms_unit_t *big_un = (ms_unit_t *)big; in stripe_convert()
301 mirror_convert(caddr_t small, caddr_t big, int direction) in mirror_convert() argument
306 mm_unit_t *big_un = (mm_unit_t *)big; in mirror_convert()
389 raid_convert(caddr_t small, caddr_t big, int direction) in raid_convert() argument
395 mr_unit_t *big_un = (mr_unit_t *)big; in raid_convert()
445 softpart_convert(caddr_t small, caddr_t big, int direction) in softpart_convert() argument
451 mp_unit_t *big_un = (mp_unit_t *)big; in softpart_convert()
492 mt_unit_t *big = (mt_unit_t *)bigp; in trans_master_convert() local
495 MDC_UNIT_SMALL2BIG(small, big); in trans_master_convert()
[all …]
/onnv-gate/usr/src/lib/pkcs11/pkcs11_kernel/common/
H A DkernelUtil.c291 biginteger_t *big; in get_rsa_private_key() local
321 big = OBJ_PRI_RSA_MOD(object_p); in get_rsa_private_key()
322 if (big->big_value == NULL) { in get_rsa_private_key()
326 if ((ptr = malloc(big->big_value_len)) == NULL) { in get_rsa_private_key()
330 ENCODE_ATTR(CKA_MODULUS, big->big_value, big->big_value_len); in get_rsa_private_key()
335 big = OBJ_PRI_RSA_PRIEXPO(object_p); in get_rsa_private_key()
336 if (big->big_value == NULL) { in get_rsa_private_key()
340 if ((ptr = malloc(big->big_value_len)) == NULL) { in get_rsa_private_key()
344 ENCODE_ATTR(CKA_PRIVATE_EXPONENT, big->big_value, in get_rsa_private_key()
345 big->big_value_len); in get_rsa_private_key()
[all …]
H A DkernelObjectUtil.c946 biginteger_t *big; in kernel_get_object_size() local
953 big = OBJ_PUB_RSA_PUBEXPO(obj); in kernel_get_object_size()
954 obj_size += big->big_value_len; in kernel_get_object_size()
955 big = OBJ_PUB_RSA_MOD(obj); in kernel_get_object_size()
956 obj_size += big->big_value_len; in kernel_get_object_size()
959 big = OBJ_PUB_DSA_PRIME(obj); in kernel_get_object_size()
960 obj_size += big->big_value_len; in kernel_get_object_size()
961 big = OBJ_PUB_DSA_SUBPRIME(obj); in kernel_get_object_size()
962 obj_size += big->big_value_len; in kernel_get_object_size()
963 big = OBJ_PUB_DSA_BASE(obj); in kernel_get_object_size()
[all …]
H A DkernelAttributeUtil.c567 get_bigint_attr_from_template(biginteger_t *big, CK_ATTRIBUTE_PTR template) in get_bigint_attr_from_template() argument
573 big->big_value = malloc(template->ulValueLen); in get_bigint_attr_from_template()
574 if (big->big_value == NULL) { in get_bigint_attr_from_template()
578 (void) memcpy(big->big_value, template->pValue, in get_bigint_attr_from_template()
580 big->big_value_len = template->ulValueLen; in get_bigint_attr_from_template()
582 big->big_value = NULL; in get_bigint_attr_from_template()
583 big->big_value_len = 0; in get_bigint_attr_from_template()
595 get_bigint_attr_from_object(biginteger_t *big, CK_ATTRIBUTE_PTR template) in get_bigint_attr_from_object() argument
599 template->ulValueLen = big->big_value_len; in get_bigint_attr_from_object()
603 if (big->big_value == NULL) { in get_bigint_attr_from_object()
[all …]
/onnv-gate/usr/src/uts/common/sys/lvm/
H A Dmd_convert.h344 #define MHS_BIG2SMALL(big, small) \ argument
345 small->hs_revision = big->hs_revision; \
346 small->hs_record_id = big->hs_record_id; \
348 small->hs_devnum = md_cmpldev(big->hs_devnum); \
349 small->hs_key = big->hs_key; \
350 small->hs_start_blk = (daddr32_t)big->hs_start_blk; \
351 small->hs_has_label = big->hs_has_label; \
352 small->hs_number_blks = (daddr32_t)big->hs_number_blks; \
353 small->hs_state = big->hs_state; \
354 small->hs_refcount = big->hs_refcount; \
[all …]
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Fcntl/t/
H A Dsyslfs.t26 unlink("big");
86 syswrite(BIG, "big") or
99 syswrite(BIG, "big") or
126 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or die $!;
128 my $syswrite = syswrite(BIG, "big");
132 sysopen(BIG, "big", O_WRONLY|O_CREAT|O_TRUNC) or
133 do { warn "sysopen 'big' failed: $!\n"; bye };
143 my $syswrite = syswrite(BIG, "big");
160 @s = stat("big");
202 fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
[all …]
/onnv-gate/usr/src/lib/libast/common/string/
H A Dfmtbuf.c37 static char* big; variable
54 if (!(big = newof(big, char, bigsiz, 0))) in fmtbuf()
61 return big; in fmtbuf()
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dlfs.t23 unlink("big");
91 print BIG "big" or
106 print BIG "big" or
132 open(BIG, ">big");
134 print BIG "big";
138 open(BIG, ">big") or do { warn "open failed: $!\n"; bye };
148 my $print = print BIG "big";
163 @s = stat("big");
205 fail unless -s "big" == 5_000_000_003; # exercizes pp_ftsize
208 fail unless -e "big";
[all …]
H A Dpack.t217 my $big = eval '2**1023';
220 unless defined $big and $big != $big / 2;
222 eval { $x = pack 'w', $big };
223 is ($@, '', "Should be able to pack 'w', $big # 2**1023");
227 "Should be able to unpack 'w' the result of pack 'w', $big # 2**1023");
230 my $quotient = int (100 * ($y - $big) / $big);
232 "Round trip pack, unpack 'w' of $big is withing 1% ($quotient%)");
/onnv-gate/usr/src/lib/libast/common/comp/
H A Dgetgroups.c56 int big[NGROUPS_MAX];
68 len = getgroups(len > NGROUPS_MAX ? NGROUPS_MAX : len, big);
70 set[i] = big[i];
/onnv-gate/usr/src/lib/libmtmalloc/common/
H A Dmtmalloc.c223 insert_hash(oversize_t *big) in insert_hash() argument
225 caddr_t ret = big->addr; in insert_hash()
229 big->hash_next = ovsz_hashtab[bucket]; in insert_hash()
230 ovsz_hashtab[bucket] = big; in insert_hash()
370 oversize_t *big, **opp; in free() local
373 big = (oversize_t *)(mem - OVSZ_SIZE); in free()
376 bucket = HASH_OVERSIZE(big->addr); in free()
379 if (*opp == big) in free()
389 *opp = big->hash_next; /* remove big from the hash table */ in free()
390 big->hash_next = NULL; in free()
[all …]
/onnv-gate/usr/src/cmd/sendmail/libsm/
H A Dt-shm.c207 int big = -1; local
219 big = atoi(optarg);
237 else if (big > 0)
238 r = shmbig(true, big);
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
H A Dutil.c250 Perl_instr(pTHX_ register const char *big, register const char *little) in Perl_instr() argument
256 return (char*)big; in Perl_instr()
259 return (char*)big; in Perl_instr()
260 while (*big) { in Perl_instr()
261 if (*big++ != first) in Perl_instr()
263 for (x=big,s=little; *s; /**/ ) { in Perl_instr()
272 return (char*)(big-1); in Perl_instr()
280 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const … in Perl_ninstr() argument
287 return (char*)big; in Perl_ninstr()
288 if (bigend - big < littleend - little) in Perl_ninstr()
[all …]
/onnv-gate/usr/src/cmd/tbl/
H A Dts.c30 prefix(char *small, char *big) in prefix() argument
33 while ((c= *small++) == *big++) in prefix()
/onnv-gate/usr/src/lib/libast/common/uwin/
H A Dacosh.c95 double t,big=1.E20; /* big+1==big */ variable
102 if(x>big) {t=log1p(x)+ln2lo; return(t+ln2hi);}
H A Dasinh.c92 big =1.0E20, /* fl(1+big) == big */ variable
99 if(t<big) {
/onnv-gate/usr/src/common/openssl/doc/crypto/
H A DBN_bn2bin.pod28 BN_bn2bin() converts the absolute value of B<a> into big-endian form
32 BN_bin2bn() converts the positive integer in big-endian form of length
53 big-endian number, and the number itself in big-endian format, where
67 BN_bn2bin() returns the length of the big-endian number placed at B<to>.
/onnv-gate/usr/src/cmd/file/
H A Dmagic154 # big-endian entries for pure executables
168 # big-endian entries for impure executables
182 # big-endian entries for Sun demand paged executables
300 # snoop files are always big-endian
301 # big-endian entries, with ullong equivalent of string "snoop"
312 # Audio files are always big-endian so there are two sets of tables here.
315 # 4 byte long. If the architecture is big-endian the %d token can be used for
320 # big-endian entries
369 # .wav big-endian entries, starting with long value for the string "RIFF"
391 # .aiff files are always big-endian
[all …]
/onnv-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/exception/
H A DSuccinctStackTraceFormatter.java131 SuccinctStackTraceFormatter.printStackTrace(big()); in main()
134 public static final Throwable big() { in big() method in SuccinctStackTraceFormatter
/onnv-gate/usr/src/tools/ctf/cvt/
H A Dctfmerge.c232 size_t big, *size; in bigheap() local
252 big = size[sizes - 1]; in bigheap()
253 if (big & (big - 1)) { in bigheap()
264 if (brk((void *)((((uintptr_t)sbrk(0) - 1) & ~(big - 1)) + big)) != 0) in bigheap()
272 mha.mha_pagesize = big; in bigheap()
/onnv-gate/usr/src/cmd/lp/filter/postscript/font/devpost/
H A DMakefile41 TXTS = DESC.big DESC.small S.big S.small LINKFILE
/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/
H A Dutil.c137 instr(char *big, char *little) in instr() argument
141 for (t = big; *t; t++) { in instr()
H A Dutil.h29 char * instr ( char *big, char *little );
/onnv-gate/usr/src/lib/libsqlite/tool/
H A Dspeedtest.tcl257 runtest {A big INSERT after a big DELETE}
270 runtest {A big DELETE followed by many small INSERTs}
/onnv-gate/usr/src/cmd/ipf/examples/
H A Dexample.107 # block incoming connection requests to my internal network from the big bad

123456