/titanic_41/usr/src/lib/pam_modules/authtok_check/ |
H A D | packer.c | 296 char *words[MAXTMP]; in merge_files() local 303 if ((words[ti] = malloc(MAXWORDLEN)) == NULL) { in merge_files() 305 free(words[ti]); in merge_files() 314 (void) fgets(words[ti], MAXWORDLEN, tmpfp[ti]); in merge_files() 315 words[ti][MAXWORDLEN-1] = '\0'; in merge_files() 330 if (strcmp(words[choice], words[ti]) > 0) in merge_files() 333 (void) Chomp(words[choice]); in merge_files() 334 if (words[choice][0] != '\0' && in merge_files() 335 strcmp(lastword, words[choice]) != 0) { in merge_files() 336 (void) PutPW(pwp, words[choice]); in merge_files() [all …]
|
/titanic_41/usr/src/cmd/cmd-inet/usr.bin/pppd/ |
H A D | asppp2pppd | 192 local(@words,$snippet,$field,$havefield,$cont,@triparray,$maytrail); 258 push(@words, $field) if $havefield; 267 \@words; 297 local($lastkey,$keyval,$words,$i,$flag,%byservice); 301 while (@{$words = uucpline(SVCFILE, $file)}) { 306 while ($i < @$words) { 307 if ($$words[$i] eq $keyval) { 308 splice @$words, $i, 1; 317 foreach $i (0 .. @{$words}) { 318 if (@{$words}[$i] =~ /^$lastkey(.*)/i) { [all …]
|
/titanic_41/usr/src/cmd/refer/ |
H A D | glue5.c | 30 struct words { struct 33 struct words *nst; argument 34 struct words *link; argument 35 struct words *fail; argument 58 static int new(struct words *x); 68 www = (struct words *)zalloc(MAXSIZ, sizeof (*www)); in fgrep() 127 struct words *c; in execute() 268 struct words *s; in cgotofn() 345 struct words *queue[QSIZE]; in cfail() 346 struct words **front, **rear; in cfail() [all …]
|
/titanic_41/usr/src/cmd/fgrep/ |
H A D | fgrep.c | 115 struct words { struct 118 struct words *nst; argument 119 struct words *link; argument 120 struct words *fail; argument 259 w = (struct words *)calloc(input_size, sizeof (struct words)); in main() 302 struct words *c; in execute() 527 struct words *s; in cgotofn() 615 struct words **queue = NULL; in cfail() 621 struct words **front, **rear; in cfail() 622 struct words *state; in cfail() [all …]
|
/titanic_41/usr/src/lib/libnsl/nss/ |
H A D | inet_ntop.c | 114 uint_t words[IN6ADDRSZ / INT16SZ]; in inet_ntop6() local 122 (void) memset(words, '\0', sizeof (words)); in inet_ntop6() 124 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); in inet_ntop6() 128 if (words[i] == 0) { in inet_ntop6() 165 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) { in inet_ntop6() 171 tp += SPRINTF((tp, "%x", words[i])); in inet_ntop6()
|
/titanic_41/usr/src/uts/common/io/i40e/core/ |
H A D | i40e_nvm.c | 42 u16 *words, u16 *data); 44 u16 *words, u16 *data); 46 u32 offset, u16 words, void *data, 340 u16 *words, u16 *data) in __i40e_read_nvm_buffer() argument 345 ret_code = i40e_read_nvm_buffer_aq(hw, offset, words, data); in __i40e_read_nvm_buffer() 347 ret_code = i40e_read_nvm_buffer_srctl(hw, offset, words, data); in __i40e_read_nvm_buffer() 363 u16 *words, u16 *data) in i40e_read_nvm_buffer() argument 370 ret_code = i40e_read_nvm_buffer_aq(hw, offset, words, in i40e_read_nvm_buffer() 375 ret_code = i40e_read_nvm_buffer_srctl(hw, offset, words, data); in i40e_read_nvm_buffer() 392 u16 *words, u16 *data) in i40e_read_nvm_buffer_srctl() argument [all …]
|
/titanic_41/usr/src/lib/libresolv2/common/inet/ |
H A D | inet_net_ntop.c | 179 int words; in inet_net_ntop_ipv6() local 207 words = (bits + 15) / 16; in inet_net_ntop_ipv6() 208 if (words == 1) in inet_net_ntop_ipv6() 209 words = 2; in inet_net_ntop_ipv6() 213 for (i = 0; i < (words * 2); i += 2) { in inet_net_ntop_ipv6() 232 if (zero_l != words && zero_s == 0 && ((zero_l == 6) || in inet_net_ntop_ipv6() 238 for (p = 0; p < words; p++) { in inet_net_ntop_ipv6() 243 if (p == words - 1) in inet_net_ntop_ipv6()
|
H A D | inet_cidr_ntop.c | 164 u_int words[NS_IN6ADDRSZ / NS_INT16SZ]; in inet_cidr_ntop_ipv6() local 177 memset(words, '\0', sizeof words); in inet_cidr_ntop_ipv6() 179 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); in inet_cidr_ntop_ipv6() 185 if (words[i] == 0) { in inet_cidr_ntop_ipv6() 222 (best.len == 7 && words[7] != 0x0001) || in inet_cidr_ntop_ipv6() 223 (best.len == 5 && words[5] == 0xffff))) { in inet_cidr_ntop_ipv6() 240 tp += SPRINTF((tp, "%x", words[i])); in inet_cidr_ntop_ipv6()
|
H A D | inet_net_pton.c | 273 int words; in inet_net_pton_ipv6() local 340 words = (bits + 15) / 16; in inet_net_pton_ipv6() 341 if (words < 2) in inet_net_pton_ipv6() 342 words = 2; in inet_net_pton_ipv6() 344 words = 8; in inet_net_pton_ipv6() 345 endp = tmp + 2 * words; in inet_net_pton_ipv6()
|
/titanic_41/usr/src/cmd/localedef/data/ |
H A D | convert_map.pl | 95 @words = split /\s+/; 96 $name = $words[0]; 97 $utf8val = $words[1]; 121 @words = split /\s+/; 122 $utf8 = $words[1]; 125 $val = $words[0];
|
/titanic_41/usr/src/cmd/ssh/libopenbsd-compat/common/ |
H A D | inet_ntop.c | 139 u_int words[IN6ADDRSZ / INT16SZ]; local 148 memset(words, '\0', sizeof words); 150 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); 154 if (words[i] == 0) { 198 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) { 204 advance = snprintf(tp, ep - tp, "%x", words[i]);
|
/titanic_41/usr/src/uts/common/io/e1000api/ |
H A D | e1000_nvm.h | 65 s32 e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data); 67 u16 words, u16 *data); 68 s32 e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, 73 u16 words, u16 *data); 74 s32 e1000_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words,
|
H A D | e1000_nvm.c | 440 s32 e1000_read_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) in e1000_read_nvm_spi() argument 453 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in e1000_read_nvm_spi() 454 (words == 0)) { in e1000_read_nvm_spi() 480 for (i = 0; i < words; i++) { in e1000_read_nvm_spi() 500 s32 e1000_read_nvm_microwire(struct e1000_hw *hw, u16 offset, u16 words, in e1000_read_nvm_microwire() argument 513 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in e1000_read_nvm_microwire() 514 (words == 0)) { in e1000_read_nvm_microwire() 527 for (i = 0; i < words; i++) { in e1000_read_nvm_microwire() 555 s32 e1000_read_nvm_eerd(struct e1000_hw *hw, u16 offset, u16 words, u16 *data) in e1000_read_nvm_eerd() argument 566 if ((offset >= nvm->word_size) || (words > (nvm->word_size - offset)) || in e1000_read_nvm_eerd() [all …]
|
H A D | e1000_i210.c | 41 static s32 e1000_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words, 235 s32 e1000_read_nvm_srrd_i210(struct e1000_hw *hw, u16 offset, u16 words, in e1000_read_nvm_srrd_i210() argument 246 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) { in e1000_read_nvm_srrd_i210() 247 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ? in e1000_read_nvm_srrd_i210() 248 E1000_EERD_EEWR_MAX_COUNT : (words - i); in e1000_read_nvm_srrd_i210() 280 s32 e1000_write_nvm_srwr_i210(struct e1000_hw *hw, u16 offset, u16 words, in e1000_write_nvm_srwr_i210() argument 291 for (i = 0; i < words; i += E1000_EERD_EEWR_MAX_COUNT) { in e1000_write_nvm_srwr_i210() 292 count = (words - i) / E1000_EERD_EEWR_MAX_COUNT > 0 ? in e1000_write_nvm_srwr_i210() 293 E1000_EERD_EEWR_MAX_COUNT : (words - i); in e1000_write_nvm_srwr_i210() 321 static s32 e1000_write_nvm_srwr(struct e1000_hw *hw, u16 offset, u16 words, in e1000_write_nvm_srwr() argument [all …]
|
H A D | e1000_i210.h | 43 u16 words, u16 *data); 45 u16 words, u16 *data);
|
/titanic_41/usr/src/psm/stand/cpr/sparcv9/sun4u/ |
H A D | machdep.c | 117 char *words; in cb_interpret() local 131 words = SF_DATA(); in cb_interpret() 134 wlen = prom_strlen(words) + 1; /* include the null */ in cb_interpret() 137 (void) prom_strncpy(minibuf, words, s); in cb_interpret() 142 prom_interpret(words, 0, 0, 0, 0, 0); in cb_interpret() 143 words += wlen; in cb_interpret()
|
/titanic_41/usr/src/uts/intel/io/dktp/controller/ata/ |
H A D | capacity.notes.txt | 49 sense of the IDENTIFY DEVICE results, words 59 which words 57-58 do *not* represent the product of words 54, 55, and 83 >sense of the IDENTIFY DEVICE results, words 93 >which words 57-58 do *not* represent the product of words 54, 55, and 96 If the words [54]*[55]*[56] don't match [57:58] then the drive is 97 "broken". Warning: some older drives have words 57:58 in big endian 104 If you have no need to use CHS mode, then just ignore words 1, 3, 6 and 106 mode, words 60:61 are still the true drive capacity but words 57:58 are 113 1) If you are LBA only (don't use CHS) then words 60:61 are all you need, 118 2a) Check words 53:58...
|
/titanic_41/usr/src/lib/libcmd/common/ |
H A D | wc.c | 79 sfprintf(sfstdout," %7I*d",sizeof(wp->words),wp->words); in printout() 176 twords += wp->words; in b_wc() 184 wp->words = twords; in b_wc()
|
/titanic_41/usr/src/tools/depcheck/ |
H A D | get_depend_info | 254 @words = split(/\s/, $line); 255 $filename = $words[0]; 353 @words = split(/\s/, $line); 354 foreach $word (@words) { 429 @words = split(/\s/, $line); 430 foreach $word (@words) {
|
/titanic_41/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | getfilter.c | 517 char *word, **words; in break_into_words() local 521 if (( words = (char **)NSLDAPI_CALLOC( 1, sizeof( char * ))) == NULL ) { in break_into_words() 525 words[ count ] = NULL; in break_into_words() 529 if (( words = (char **)NSLDAPI_REALLOC( words, in break_into_words() 534 words[ count ] = word; in break_into_words() 535 words[ ++count ] = NULL; in break_into_words() 539 *wordsp = words; in break_into_words()
|
/titanic_41/usr/src/cmd/rcm_daemon/common/ |
H A D | SUNW,vdevices.pl | 111 my @words = split(/ /, $str); 114 if (scalar(@words) != 0) {
|
/titanic_41/usr/src/uts/common/io/ixgbe/ |
H A D | ixgbe_common.h | 71 u16 words, u16 *data); 74 u16 words, u16 *data); 77 u16 words, u16 *data); 81 u16 words, u16 *data);
|
H A D | ixgbe_x540.h | 51 s32 ixgbe_read_eerd_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words, 54 s32 ixgbe_write_eewr_buffer_X540(struct ixgbe_hw *hw, u16 offset, u16 words,
|
/titanic_41/usr/src/lib/libm/common/m9x/ |
H A D | fenv_inlines.h | 39 } words; member 50 : "=m" (u->words.cw), "=m" (u->words.sw)); in __fenv_getcwsw() 68 : "r" (cwsw.words.cw), "r" (cwsw.words.sw) in __fenv_setcwsw()
|
/titanic_41/usr/src/uts/common/rpc/ |
H A D | rpc_subr.c | 756 uint_t words[IN6ADDRSZ / INT16SZ]; local 766 bzero(words, sizeof (words)); 768 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3)); 773 if (words[i] == 0) { 809 (void) sprintf(tp, "%x", words[i]);
|