/osnet-11/usr/src/lib/libast/common/string/ |
H A D | fmtbuf.c | 37 static char* big; variable 54 if (!(big = newof(big, char, bigsiz, 0))) 61 return big;
|
/osnet-11/usr/src/lib/libast/common/comp/ |
H A D | getgroups.c | 56 int big[NGROUPS_MAX]; 68 len = getgroups(len > NGROUPS_MAX ? NGROUPS_MAX : len, big); 70 set[i] = big[i];
|
/osnet-11/usr/src/lib/pkcs11/pkcs11_kernel/common/ |
H A D | kernelUtil.c | 291 biginteger_t *big; local 321 big = OBJ_PRI_RSA_MOD(object_p); 322 if (big->big_value == NULL) { 326 if ((ptr = malloc(big->big_value_len)) == NULL) { 330 ENCODE_ATTR(CKA_MODULUS, big->big_value, big->big_value_len); 335 big = OBJ_PRI_RSA_PRIEXPO(object_p); 336 if (big->big_value == NULL) { 340 if ((ptr = malloc(big->big_value_len)) == NULL) { 344 ENCODE_ATTR(CKA_PRIVATE_EXPONENT, big 425 biginteger_t *big; local 503 biginteger_t *big; local 565 biginteger_t *big; local 627 biginteger_t *big; local 699 biginteger_t *big; local [all...] |
H A D | kernelObjectUtil.c | 946 biginteger_t *big; local 953 big = OBJ_PUB_RSA_PUBEXPO(obj); 954 obj_size += big->big_value_len; 955 big = OBJ_PUB_RSA_MOD(obj); 956 obj_size += big->big_value_len; 959 big = OBJ_PUB_DSA_PRIME(obj); 960 obj_size += big->big_value_len; 961 big = OBJ_PUB_DSA_SUBPRIME(obj); 962 obj_size += big->big_value_len; 963 big [all...] |
H A D | kernelAttributeUtil.c | 563 * Copy the big integer attribute value from template to a biginteger_t struct. 566 get_bigint_attr_from_template(biginteger_t *big, CK_ATTRIBUTE_PTR template) argument 572 big->big_value = malloc(template->ulValueLen); 573 if (big->big_value == NULL) { 577 (void) memcpy(big->big_value, template->pValue, 579 big->big_value_len = template->ulValueLen; 581 big->big_value = NULL; 582 big->big_value_len = 0; 590 * Copy the big integer attribute value from a biginteger_t struct in the 594 get_bigint_attr_from_object(biginteger_t *big, CK_ATTRIBUTE_PT argument 832 bigint_attr_cleanup(biginteger_t *big) argument [all...] |
H A D | kernelKeys.c | 1985 biginteger_t *big; local 2040 big = OBJ_PUB_EC_POINT(base_key); 2045 big = OBJ_PRI_EC_VALUE(base_key); 2053 tmp.ulValueLen = big->big_value_len; 2137 big = OBJ_PRI_DH_VALUE(base_key); 2140 tmp.ulValueLen = big->big_value_len;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/x2p/ |
H A D | util.h | 29 char * instr ( char *big, char *little );
|
H A D | util.c | 134 /* return ptr to little string in big string, NULL if not found */ 137 instr(char *big, char *little) argument 141 for (t = big; *t; t++) {
|
/osnet-11/usr/src/cmd/sendmail/libsm/ |
H A D | t-shm.c | 207 int big = -1; local 219 big = atoi(optarg); 237 else if (big > 0) 238 r = shmbig(true, big);
|
/osnet-11/usr/src/lib/libmtmalloc/common/ |
H A D | mtmalloc.c | 198 #define MAXSIZE 512 /* arbitrary, big enough, for requestsize */ 273 * Add big to the oversize hash table at the head of the relevant bucket. 276 insert_hash(oversize_t *big) argument 278 caddr_t ret = big->addr; 282 big->hash_next = ovsz_hashtab[bucket]; 283 ovsz_hashtab[bucket] = big; 287 remove_hash(oversize_t *big) argument 290 int bucket = HASH_OVERSIZE(big->addr); 295 if (*opp == big) 301 *opp = big 466 oversize_t *big; local 624 oversize_t *orig, *tail, *big; local 1708 oversize_t *big; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | AnyDBM_File.pm | 57 Code Size ? ? small big big 58 Database Size ? ? small big? ok[1]
|
H A D | integer.pm | 20 hardware, it can make a big difference in performance.
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/ |
H A D | Makefile.PL | 112 if (! ((*up == 1 << (8*i)) || /* big-endian */
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | util.c | 246 /* return ptr to little string in big string, NULL if not found */ 250 Perl_instr(pTHX_ register const char *big, register const char *little) argument 256 return (char*)big; 259 return (char*)big; 260 while (*big) { 261 if (*big++ != first) 263 for (x=big,s=little; *s; /**/ ) { 272 return (char*)(big-1); 280 Perl_ninstr(pTHX_ register const char *big, register const char *bigend, const char *little, const char *lend) argument 287 return (char*)big; 309 Perl_rninstr(pTHX_ register const char *big, const char *bigend, const char *little, const char *lend) argument 430 Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags) argument 629 register unsigned char *big; local [all...] |
H A D | pp.c | 12 * "It's a big house this, and very peculiar. Always a bit more to discover, 1219 we can skip the test on the right operand - right big 1221 also too big. */ 3143 SV *big; local 3157 big = POPs; 3158 tmps = SvPV(big, biglen); 3159 if (offset > 0 && DO_UTF8(big)) 3160 sv_pos_u2b(big, &offset, 0); 3170 if (retval > 0 && DO_UTF8(big)) 3171 sv_pos_b2u(big, 3179 SV *big; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | pack.t | 217 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 i [all...] |
H A D | sprintf.t | 131 >%G< >1234567e96< >1.23457E+102< >exponent too big for OS/390< 133 >%e< >1234567E96< >1.234567e+102< >exponent too big for OS/390< 136 >%g< >1234567E96< >1.23457e+102< >exponent too big for OS/390<
|
/osnet-11/usr/src/lib/libsqlite/tool/ |
H A D | speedtest.tcl | 257 runtest {A big INSERT after a big DELETE} 270 runtest {A big DELETE followed by many small INSERTs}
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Math/BigInt/ |
H A D | Scalar.pm | 2 # core math lib for BigInt, representing big numbers by normal int/float's 324 Provides support for big integer calculations via means of 'small' int/floats.
|
/osnet-11/usr/src/lib/pkcs11/pkcs11_softtoken/common/ |
H A D | softAttributeUtil.c | 703 * Copy the big integer attribute value from template to a biginteger_t struct. 706 get_bigint_attr_from_template(biginteger_t *big, CK_ATTRIBUTE_PTR template) argument 712 big->big_value = malloc(template->ulValueLen); 713 if (big->big_value == NULL) { 717 (void) memcpy(big->big_value, template->pValue, 719 big->big_value_len = template->ulValueLen; 721 big->big_value = NULL; 722 big->big_value_len = 0; 730 * Copy the big integer attribute value from a biginteger_t struct in the 734 get_bigint_attr_from_object(biginteger_t *big, CK_ATTRIBUTE_PT argument 1038 bigint_attr_cleanup(biginteger_t *big) argument [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/IPC/ |
H A D | Open2.pm | 72 The big problem with this approach is that if you don't have control
|
H A D | Open3.pm | 79 The big problem with this approach is that if you don't have control
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Harness/t/ |
H A D | test-harness.t | 526 Can't detailize, too big. 528 Can't detailize, too big.
|
/osnet-11/usr/src/lib/libkmf/libkmf/common/ |
H A D | generalop.c | 1365 kmf_free_bigint(KMF_BIGINT *big) argument 1367 if (big != NULL && big->val != NULL) { 1369 (void) memset(big->val, 0x00, big->len); 1370 free(big->val); 1371 big->val = NULL; 1372 big->len = 0; 2351 /* If the given valueLen is too big, return error */ 2497 * assume "outValue" is big enoug [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Locale/ |
H A D | Maketext.pm | 539 * The juice of about a half a big lemon, or of a whole smaller one
|