Searched defs:words (Results 1 - 16 of 16) sorted by relevance

/osnet-11/usr/src/lib/libnsl/nss/
H A Dinet_ntop.c114 uint_t words[IN6ADDRSZ / INT16SZ]; local
122 (void) memset(words, '\0', sizeof (words));
124 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
128 if (words[i] == 0) {
165 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
171 tp += SPRINTF((tp, "%x", words[i]));
/osnet-11/usr/src/lib/libcmd/common/
H A Dwc.h45 Sfoff_t words; member in struct:__anon1500
H A Dgrep.c83 "[w:word-match|word-regexp?Force \apatterns\a to match complete words.]"
176 unsigned char words; /* word matches only */ member in struct:State_s
201 if (state->words)
804 state.words = 1;
822 if ((state.options & REG_LITERAL) && state.words)
/osnet-11/usr/src/lib/libresolv2/common/inet/
H A Dinet_cidr_ntop.c164 u_int words[NS_IN6ADDRSZ / NS_INT16SZ]; local
177 memset(words, '\0', sizeof words);
179 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
185 if (words[i] == 0) {
222 (best.len == 7 && words[7] != 0x0001) ||
223 (best.len == 5 && words[5] == 0xffff))) {
240 tp += SPRINTF((tp, "%x", words[i]));
H A Dinet_net_ntop.c179 int words; local
206 /* how many words need to be displayed in output */
207 words = (bits + 15) / 16;
208 if (words == 1)
209 words = 2;
213 for (i = 0; i < (words * 2); i += 2) {
232 if (zero_l != words && zero_s == 0 && ((zero_l == 6) ||
237 /* Format whole words. */
238 for (p = 0; p < words; p++) {
243 if (p == words
[all...]
H A Dinet_net_pton.c273 int words; local
340 words = (bits + 15) / 16;
341 if (words < 2)
342 words = 2;
344 words = 8;
345 endp = tmp + 2 * words;
/osnet-11/usr/src/lib/libldap4/common/
H A Dgetfilter.c374 if ( i > wordnum ) { /* add blank btw words */
424 char *word, **words; local
427 if (( words = (char **)calloc( (size_t) 1, sizeof( char * ))) == NULL ) {
431 words[ count ] = NULL;
435 if (( words = (char **)realloc( words,
440 words[ count ] = word;
441 words[ ++count ] = NULL;
445 *wordsp = words;
/osnet-11/usr/src/lib/libldap5/sources/ldap/common/
H A Dgetfilter.c456 if ( i > wordnum ) { /* add blank btw words */
517 char *word, **words; local
521 if (( words = (char **)NSLDAPI_CALLOC( 1, sizeof( char * ))) == NULL ) {
525 words[ count ] = NULL;
529 if (( words = (char **)NSLDAPI_REALLOC( words,
534 words[ count ] = word;
535 words[ ++count ] = NULL;
539 *wordsp = words;
/osnet-11/usr/src/grub/grub2/grub-core/script/
H A Dscript.c243 struct grub_script_arglist *words,
257 cmd->words = words;
240 grub_script_create_cmdfor(struct grub_parser_param *state, struct grub_script_arg *name, struct grub_script_arglist *words, struct grub_script_cmd *list) argument
/osnet-11/usr/src/lib/pam_modules/authtok_check/
H A Dpacker.c37 * - each single source dictionary can only hold up to 4GB words
105 /* write words to file */
156 * words in "buf" and insert each of them into the offsets-array.
179 * make sure we only insert words consisting of
197 * helper-routine used for quicksort. we compate two words in the
285 * and insert the thus sorted words into the cracklib database
293 char *words[MAXTMP]; local
300 if ((words[ti] = malloc(MAXWORDLEN)) == NULL) {
302 free(words[ti]);
307 * we read the first word of each of the temp-files into words[]
[all...]
/osnet-11/usr/src/grub/grub2/include/grub/
H A Dscript_sh.h137 /* The words loop iterates over. */ member in struct:grub_script_cmdfor
138 struct grub_script_arglist *words;
273 struct grub_script_arglist *words,
/osnet-11/usr/src/lib/libtsol/common/
H A Dprivate.c51 * cvt: char *long_words[display_size]; Pointers to long words
52 * char *short_words[display_size]; Pointers to short words
55 * strings associated with long and short words.
60 * Sensitivity Label words.
72 * Clearance words.
85 alloc_words(char **words, const size_t size) argument
87 if (*words == NULL) {
88 if ((*words = malloc(size)) == NULL)
91 if ((*words = realloc(*words, siz
[all...]
/osnet-11/usr/src/lib/efcode/include/fcode/
H A Dproto.h235 FNPROTO(words); variable
/osnet-11/usr/src/lib/efcode/engine/
H A Ddebug.c180 log_message(MSG_ERROR, "Too many forward debug words\n");
284 log_message(MSG_INFO, "No forward debug words\n");
290 log_message(MSG_INFO, "No debug words\n");
366 * This is complicated by being given ACF's to temporary compile words which
375 /* check to see if any words are being debugged */
379 /* only words in dictionary can be debugged */
662 DEBUG_EXIT_WORDS, "exit-words",
785 words(fcode_env_t *env) function
1569 FORTH(IMMEDIATE, "words", words);
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A De1000.c526 * words - number of words to read
531 uint16_t words,
539 /* A check for invalid values: offset too large, too many words, and not
540 * enough words.
542 if((offset > eeprom->word_size) || (words > eeprom->word_size - offset) ||
543 (words == 0)) {
544 DEBUGOUT("\"words\" parameter out of bounds\n");
576 for (i = 0; i < words; i++) {
581 for (i = 0; i < words;
529 e1000_read_eeprom(struct e1000_hw *hw, uint16_t offset, uint16_t words, uint16_t *data) argument
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dtoke.c4748 OP *words = Nullop; local
4760 "Possible attempt to separate words with commas");
4776 words = append_elem(OP_LIST, words,
4780 if (words) {
4781 PL_nextval[PL_nexttoke].opval = words;
6894 qw quote words @EXPORT_OK = qw( func() $spam )

Completed in 94 milliseconds