Home
last modified time | relevance | path

Searched refs:words (Results 1 – 25 of 136) sorted by relevance

123456

/titanic_41/usr/src/lib/pam_modules/authtok_check/
H A Dpacker.c296 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 Dasppp2pppd192 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 Dglue5.c30 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 Dfgrep.c115 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 Dinet_ntop.c114 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 Di40e_nvm.c42 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 Dinet_net_ntop.c179 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 Dinet_cidr_ntop.c164 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 Dinet_net_pton.c273 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 Dconvert_map.pl95 @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 Dinet_ntop.c139 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 De1000_nvm.h65 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 De1000_nvm.c440 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 De1000_i210.c41 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 De1000_i210.h43 u16 words, u16 *data);
45 u16 words, u16 *data);
/titanic_41/usr/src/psm/stand/cpr/sparcv9/sun4u/
H A Dmachdep.c117 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 Dcapacity.notes.txt49 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 Dwc.c79 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 Dget_depend_info254 @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 Dgetfilter.c517 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 DSUNW,vdevices.pl111 my @words = split(/ /, $str);
114 if (scalar(@words) != 0) {
/titanic_41/usr/src/uts/common/io/ixgbe/
H A Dixgbe_common.h71 u16 words, u16 *data);
74 u16 words, u16 *data);
77 u16 words, u16 *data);
81 u16 words, u16 *data);
H A Dixgbe_x540.h51 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 Dfenv_inlines.h39 } 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 Drpc_subr.c756 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]);

123456