Searched refs:bc (Results 1 - 25 of 25) sorted by relevance

/osnet-11/usr/src/lib/libast/common/comp/
H A Dstrcasecmp.c40 register int bc;
48 bc = *b++;
49 if (isupper(bc))
50 bc = tolower(bc);
51 if (d = ac - bc)
H A Dstrncasecmp.c41 register int bc;
52 bc = *b++;
53 if (isupper(bc))
54 bc = tolower(bc);
55 if (d = ac - bc)
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/
H A Dext2_buffer.c49 static int try_to_flush(struct ext2_buffer_cache *bc) argument
53 for (i=0;i<bc->size;i++)
57 bh = &bc->heads[i];
66 for (i=0;i<bc->size;i++)
70 bh = &bc->heads[i];
92 static struct ext2_buffer_head *ext2_bh_alloc(struct ext2_buffer_cache *bc, blk_t block) argument
100 for (i=0;i<bc->size;i++)
102 bh = &bc->heads[i];
108 if (i == bc->size)
110 try_to_flush(bc);
140 ext2_bh_find(struct ext2_buffer_cache *bc, blk_t block) argument
308 struct ext2_buffer_cache *bc; local
[all...]
H A Dext2.h86 struct ext2_buffer_cache *bc; member in struct:ext2_buffer_head
112 struct ext2_buffer_cache *bc; member in struct:ext2_fs
/osnet-11/usr/src/lib/libc/i386/gen/
H A D_mul64.s37 / ac bc
39 / ac ad+bc bd
41 / We can ignore ac and top 32 bits of ad+bc: if <> 0, overflow happened.
58 mull 20(%ebp) / Multiply A.lo * B.hi (producing bc)
59 addl %ecx,%eax / Produce ad+bc
/osnet-11/usr/src/lib/libcurses/screen/
H A Dinit_color.c127 float rc, gc, bc, h, l, s; local
154 bc = (max - b) / (max - min);
157 h = bc - gc;
159 h = 2 + rc - bc;
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dldaputf8.c141 unsigned long sc, bc; local
150 for (bp = brk; (bc = LDAP_UTF8GETCC(bp)) != 0;) {
151 if (sc == bc)
168 if ((bc = LDAP_UTF8GETCC(bp)) == sc) {
177 } while (bc != 0);
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt/cipher/
H A Dblowfish.c52 static void encrypt_block (void *bc, byte *outbuf, const byte *inbuf);
53 static void decrypt_block (void *bc, byte *outbuf, const byte *inbuf);
246 function_F( BLOWFISH_context *bc, u32 x ) argument
262 return ((bc->s0[a] + bc->s1[b]) ^ bc->s2[c] ) + bc->s3[d];
277 do_encrypt ( BLOWFISH_context *bc, u32 *ret_xl, u32 *ret_xr ) argument
284 p = bc->p;
285 s0 = bc
343 decrypt( BLOWFISH_context *bc, u32 *ret_xl, u32 *ret_xr ) argument
412 do_encrypt_block( BLOWFISH_context *bc, byte *outbuf, const byte *inbuf ) argument
432 BLOWFISH_context *bc = (BLOWFISH_context *) context; local
439 do_decrypt_block(BLOWFISH_context *bc, byte *outbuf, const byte *inbuf) argument
459 BLOWFISH_context *bc = (BLOWFISH_context *) context; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/lib/libgcrypt-grub/cipher/
H A Dblowfish.c52 static void encrypt_block (void *bc, byte *outbuf, const byte *inbuf);
53 static void decrypt_block (void *bc, byte *outbuf, const byte *inbuf);
246 function_F( BLOWFISH_context *bc, u32 x ) argument
262 return ((bc->s0[a] + bc->s1[b]) ^ bc->s2[c] ) + bc->s3[d];
277 do_encrypt ( BLOWFISH_context *bc, u32 *ret_xl, u32 *ret_xr ) argument
284 p = bc->p;
285 s0 = bc
343 decrypt( BLOWFISH_context *bc, u32 *ret_xl, u32 *ret_xr ) argument
412 do_encrypt_block( BLOWFISH_context *bc, byte *outbuf, const byte *inbuf ) argument
432 BLOWFISH_context *bc = (BLOWFISH_context *) context; local
439 do_decrypt_block(BLOWFISH_context *bc, byte *outbuf, const byte *inbuf) argument
459 BLOWFISH_context *bc = (BLOWFISH_context *) context; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/EBCDIC/
H A DEBCDIC.pm18 $posix_bc = encode("posix-bc", $utf8); # loads Encode::EBCDIC implicitly
33 posix-bc
/osnet-11/usr/src/cmd/perl/5.8.4/
H A DMakefile64 # ONLY for cleaning Parfait's .bc files from the 5.8.4 proto area
65 bc-clobber:
66 find $(ROOT)/usr/perl5/5.8.4 -name "*.bc" -exec rm -f {} \;
72 install: install-bits bc-clobber
/osnet-11/usr/src/lib/libsmbfs/common/
H A Dsmbfs_negprot.c107 uint16_t dindex, bc; local
221 err = smbfs_md_get_uint16le(mbp, &bc); /* ByteCount */
298 len = (int)bc - SMB_GUID_LEN;
320 if (bc < eklen || eklen < NTLM_CHAL_SZ) {
H A Dsmbfs_ssnsetup.c337 uint16_t bc, len1, len2, sblen; local
451 smbfs_md_get_uint16le(mbp, &bc); /* byte count */
456 if (sblen == 0 || bc < sblen)
469 err = smbfs_md_get_uint16le(mbp, &bc); /* byte count */
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dtied_hook.t217 my $bc = bless \%hash, 'FOO'; # FOO does not exist -> no hook
218 my $bx = thaw freeze $bc;
241 $bc = bless \%hash, 'TIED_HASH_REF';
242 $bx = thaw freeze $bc;
/osnet-11/usr/src/lib/libresolv2/common/nameser/
H A Dns_name.c744 int ac, bc; local
746 while (ac = *a, bc = *b, ac != 0 && bc != 0) {
747 if ((ac & NS_CMPRSFLGS) != 0 || (bc & NS_CMPRSFLGS) != 0) {
751 if (a + ac >= ae || b + bc >= be) {
755 if (ac != bc || strncasecmp((const char *) ++a,
758 a += ac, b += bc;
760 return (ac == 0 && bc == 0);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dstudy.t101 ok(m|bc/*d|);
108 if ($^O eq 'os390' or $^O eq 'posix-bc' or $^O eq 'MacOS') {
H A Dutf8decode.t37 1.1.1 y "\xce\xba\xe1\xbd\xb9\xcf\x83\xce\xbc\xce\xb5" - 11 ce:ba:e1:bd:b9:cf:83:ce:bc:ce:b5 5
70 3.1.9 n "\x80\x81\x82\x83\x84\x85\x86\x87\x88\x89\x8a\x8b\x8c\x8d\x8e\x8f\x90\x91\x92\x93\x94\x95\x96\x97\x98\x99\x9a\x9b\x9c\x9d\x9e\x9f\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf" - 64 80:81:82:83:84:85:86:87:88:89:8a:8b:8c:8d:8e:8f:90:91:92:93:94:95:96:97:98:99:9a:9b:9c:9d:9e:9f:a0:a1:a2:a3:a4:a5:a6:a7:a8:a9:aa:ab:ac:ad:ae:af:b0:b1:b2:b3:b4:b5:b6:b7:b8:b9:ba:bb:bc:bd:be:bf - unexpected continuation byte 0x80
H A Dpat.t68 if (m|bc/*d|) {print "ok 22\n";} else {print "not ok 22\n";}
195 eval '"abc" =~ /a(bc$)|$xyz/; $result = "$&:$1"';
197 print $result eq "abc:bc" ? "ok 51\n" : "not ok 51\n";
784 print "not " unless $str =~ /.\G./ and $& eq 'bc';
1892 $T="ok 657\n";if ($x =~ /a([abc]+)(?{$y=$^N})d/ and $y eq "bc"){print $T} else {print "not $T"};
1893 $T="ok 658\n";if ($x =~ /a([abcdefg]+)(?{$y=$^N})d/ and $y eq "bc"){print $T} else {print "not $T"};
1894 $T="ok 659\n";if ($x =~ /(a([abcdefg]+)(?{$y=$^N})d)(?{$z=$^N})e/ and $y eq "bc" and $z eq "abcd")
1896 $T="ok 660\n";if ($x =~ /(a([abcdefg]+)(?{$y=$^N})de)(?{$z=$^N})/ and $y eq "bc" and $z eq "abcde")
3269 ok("a-bc" eq eval {
3270 my($x, $y) = "bca" =~ /^(?=.*(a)).*(bc)/;
[all...]
/osnet-11/usr/src/lib/fm/topo/modules/sun4v/platform-mem/common/
H A Dmem_mdesc.c259 int bc, idx, mdesc_dimm_count, mdesc_bank_count; local
397 bc = md_scan_dag(mdp, listp[idx],
406 gmp = find_grp(bl, bc, bclist, banklist, mdesc_bank_count, mem);
408 smp->sm_grp = create_grp(mod, bl, bc,
/osnet-11/usr/src/lib/pylibbe/common/
H A Dlibbe.py47 import bootmgmt.bootconfig as bc namespace
572 binst = bc.SolarisDiskBootInstance(None, fstype="zfs", bootfs=bootfs,
744 boot_cfg = bc.DiskBootConfig(flags, **kwargs)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/IPC/
H A DOpen3.pm73 going to talk to something like B<bc>, both writing to it and reading
75 like B<bc> will read a line at a time and output a line at a time.
H A DOpen2.pm66 assumes it's going to talk to something like B<bc>, both writing
68 "know" that commands like B<bc> will read a line at a time and
/osnet-11/usr/src/lib/nsswitch/ldap/common/
H A Dgetgrent.c1978 _memberof_tl_cb_t *bc = (_memberof_tl_cb_t *)userdata; local
1981 rc = pack_group_gid_dn(bc->bufpp, entry,
1982 bc->grespp, bc->pbufpp, 0);
/osnet-11/usr/src/lib/libast/common/regex/
H A Dregcomp.c1033 col(Celt_t* ce, int ic, unsigned char* bp, int bw, int bc, unsigned char* ep, int ew, int ec) argument
1050 c = bc;
/osnet-11/usr/src/grub/grub2/docs/
H A Dtexinfo.tex7861 \gdef^^bc{$1\over4$}
7945 \gdef^^bc{\OE}
7981 \gdef^^bc{\'z}

Completed in 89 milliseconds