Searched refs:words (Results 51 - 75 of 329) sorted by relevance

1234567891011>>

/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dinet_ntop.c120 u_int words[IN6ADDRSZ / INT16SZ]; local
129 memset(words, '\0', sizeof words);
131 words[i / 2] |= (src[i] << ((1 - (i % 2)) << 3));
135 if (words[i] == 0) {
179 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
185 advance = snprintf(tp, ep - tp, "%x", words[i]);
/macosx-10.10.1/tcpdump-61/tcpdump/missing/
H A Dinet_ntop.c118 u_long words [IN6ADDRSZ / INT16SZ]; local
125 memset (words, 0, sizeof(words));
127 words[i/2] |= (src[i] << ((1 - (i % 2)) << 3));
133 if (words[i] == 0)
173 (best.len == 6 || (best.len == 5 && words[5] == 0xffff)))
183 tp += sprintf (tp, "%lX", words[i]);
/macosx-10.10.1/ICU-531.30/icuSources/common/
H A Ddictbe.cpp100 // List size, limited by the maximum number of words in the dictionary
194 // How many words in a row are "good enough"?
213 // Minimum number of characters for two words
251 return 0; // Not enough characters for two words
258 PossibleWord words[THAI_LOOKAHEAD]; local
266 // Look for candidate words at the current position
267 int candidates = words[wordsFound%THAI_LOOKAHEAD].candidates(text, fDictionary, rangeEnd);
271 wordLength = words[wordsFound % THAI_LOOKAHEAD].acceptMarked(text);
274 // If there was more than one, see which one can take us forward the most words
282 if (words[(wordsFoun
486 PossibleWord words[LAO_LOOKAHEAD]; local
687 PossibleWord words[KHMER_LOOKAHEAD]; local
[all...]
/macosx-10.10.1/cxxfilt-11/cxxfilt/opcodes/
H A Darc-dis.c76 a = state->words[1]; \
85 flag = BIT (state->words[0], 8); \
86 state->nullifyMode = BITS (state->words[0], 5, 6); \
87 cond = BITS (state->words[0], 0, 4); \
96 cond = BITS (state->words[0], 0, 4); \
115 field = FIELDD (state->words[0]); \
123 fieldA = FIELDA (state->words[0]); \
135 fieldB = FIELDB (state->words[0]); \
143 fieldC = FIELDC (state->words[0]); \
165 #define NEXT_WORD(x) (offset += 4, state->words[
[all...]
H A Darc-dis.h65 unsigned long words[2]; member in struct:arcDisState
/macosx-10.10.1/smb-759.0/lib/smbclient/
H A Draw.c67 const mbuf_t words,
83 /* Set transmit words buffer ... */
84 krq.ioc_twc = mbuf_len(words) / sizeof(uint16_t);
85 krq.ioc_twords = mbuf_data(words);
121 mbuf_t words = NULL; local
140 /* Split the request buffer into the header, the parameter words and the
158 if (mbuf_attachcluster(MBUF_WAITOK, MBUF_TYPE_DATA, &words, (void *)ptr, NULL, len, NULL)) {
162 mbuf_setlen(words, len);
163 ADVANCE(ptr, len); /* skip parameter words */
166 (uintptr_t)ptr < (uintptr_t)mbuf_data(words)) {
64 smb_ioc_request( void * hContext, struct smb_header * header, const mbuf_t words, const mbuf_t bytes, mbuf_t response) argument
[all...]
/macosx-10.10.1/Heimdal-398.1.2/kuser/
H A Dgenerate-requests.c58 errx(1, "%s is an empty file, no words to try", filename);
71 char **words; local
78 nwords = read_words (filename, &words);
81 char *name = words[rand() % nwords];
/macosx-10.10.1/OpenSSH-189/openssh/
H A Dmdoc2man.awk47 retval=retval words[++w]
74 nwords=split($0,words)
77 if(match(words[w],"^Li|Pf$")) {
79 } else if(match(words[w],"^Xo$")) {
84 } else if(match(words[w],"^Xc$")) {
90 } else if(match(words[w],"^Bd$")) {
92 if(match(words[w+1],"-literal")) {
97 } else if(match(words[w],"^Ed$")) {
100 } else if(match(words[w],"^Ns$")) {
105 } else if(match(words[
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/External/CodeMirror/
H A Dcoffeescript.js21 function wordRegexp(words) {
22 return new RegExp("^((" + words.join(")|(") + "))\\b");
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Dwc.c26 * count the number of bytes, words, and lines in a file
32 "[+NAME?wc - print the number of bytes, words, and lines in files]"
49 "[w:words?List the word counts.]"
79 sfprintf(sfstdout," %7I*d",sizeof(wp->words),wp->words);
176 twords += wp->words;
184 wp->words = twords;
/macosx-10.10.1/Heimdal-398.1.2/kadmin/
H A Dadd-random-users.c36 #define WORDS_FILENAME "/usr/share/dict/words"
73 errx(1, "%s is an empty file, no words to try", filename);
81 unsigned nwords, char **words)
92 snprintf (name, sizeof(name), "%s%d", words[r1 % nwords], r2 % 1000);
116 char **words; local
130 nwords = read_words (filename, &words);
133 add_user (context, kadm_handle, nwords, words);
80 add_user(krb5_context context, void *kadm_handle, unsigned nwords, char **words) argument
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c++/detail/
H A Dui.cpp98 std::vector< std::string > words = atf::text::split(text, " "); local
99 for (std::vector< std::string >::const_iterator iter = words.begin();
100 iter != words.end(); iter++) {
103 if (iter != words.begin() && maxcol > 0 &&
110 } else if (iter != words.begin()) {
H A Dtext.cpp96 std::vector< std::string > words; local
102 words.push_back(str.substr(pos, newpos - pos));
106 return words;
/macosx-10.10.1/CPANInternal-159.1/Perl4-CoreLibs-0.003/lib/
H A Dsyslog.pl72 local(@words, $num, $numpri, $numfac, $sum);
77 @words = split(/\W+/, $priority, 2);# Allow "level" or "level|facility".
80 foreach (@words) {
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dwordexp.c33 int wordexp(const char *restrict words __unused, wordexp_t *restrict pwordexp __unused, int flags __unused) {
98 * Perform shell word expansion on `words' and place the resulting list
99 * of words in `we'. See wordexp(3).
105 wordexp(const char * __restrict words, wordexp_t * __restrict we0, int flags) argument
107 wordexp(const char * __restrict words, wordexp_t * __restrict we, int flags)
115 if ((error = we_check(words, flags)) != 0) return (error);
149 if ((error = we_check(words, flags)) != 0) {
154 if ((error = we_askshell(words, we, flags)) != 0) {
201 we_askshell(const char *words, wordexp_t *we, int flags) argument
206 long nwords, nbytes; /* Number of words, byte
490 we_check(const char *words, int flags) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/textutil/
H A Dadjust.tcl98 # next line without hyphenation; words longer than given
141 set words [split $orig]
142 set numWords [llength $words]
147 set w [lindex $words $cnt]
187 # list of words w => {"$w3-" "$w4"}
189 set x [lreplace $words $cnt $cnt "$w4"]
190 set words [linsert $x $cnt "$w3-"]
191 set w [lindex $words $cnt]
208 set x [lreplace $words $cnt $cnt $w4]
209 set words [linser
[all...]
/macosx-10.10.1/WTF-7600.1.24/wtf/
H A Ddtoa.cpp144 uint32_t* words() function in struct:WTF::BigInt
149 const uint32_t* words() const function in struct:WTF::BigInt
171 uint32_t* x = b.words();
266 b.words()[0] = i;
300 for (xc = c.words(), xa = xc + wc; xc < xa; xc++)
302 xa = a->words();
304 xb = b->words();
306 xc0 = c.words();
352 for (xc0 = c.words(), xc = xc0 + wc; wc > 0 && !*--xc; --wc) { }
431 const uint32_t* srcStart = b.words();
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/libedit/doc/
H A Dmdoc2man.awk46 retval=retval words[++w]
73 nwords=split($0,words)
76 if(match(words[w],"^Li|Pf$")) {
78 } else if(match(words[w],"^Xo$")) {
83 } else if(match(words[w],"^Xc$")) {
89 } else if(match(words[w],"^Bd$")) {
91 if(match(words[w+1],"-literal")) {
96 } else if(match(words[w],"^Po$")) {
101 } else if(match(words[w],"^Pc$")) {
106 } else if(match(words[
[all...]
/macosx-10.10.1/apr-32/apr/apr/network_io/unix/
H A Dinet_ntop.c151 unsigned int words[IN6ADDRSZ / INT16SZ]; local
163 next_dest = words;
217 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
224 tp += apr_snprintf(tp, sizeof tmp - (tp - tmp), "%x", words[i]);
/macosx-10.10.1/bash-94.1.2/bash-3.2/
H A Dpcomplib.c60 ret->words = (char *)NULL;
78 FREE (cs->words);
102 new->words = STRDUP (cs->words);
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-c/detail/
H A Dtext.c97 atf_text_split(const char *str, const char *delim, atf_list_t *words) argument
103 err = atf_list_init(words);
126 err = atf_list_append(words, atf_dynstr_fini_disown(&word), true);
138 atf_list_fini(words);
/macosx-10.10.1/cups-408/cups/cgi-bin/
H A Dhelp-index.h50 cups_array_t *words; /* Words after this node */ member in struct:help_node_s
H A Dtesthi.c106 printf(" (%d words)\n", cupsArrayCount(node->words));
/macosx-10.10.1/ruby-106/ruby/test/ripper/
H A Ddummyparser.rb199 def on_words_add(words, word)
200 words.push word
207 def on_qwords_add(words, word)
208 words.push word
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/sha1/
H A Dsha256.h42 /* Hash size in 32-bit words */
61 uint32_t words[16]; member in union:_SHA256Context::__anon12737

Completed in 428 milliseconds

1234567891011>>