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

12

/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DIndexingHeader.h48 static ptrdiff_t offsetOfPublicLength() { return OBJECT_OFFSETOF(IndexingHeader, u.lengths.publicLength); }
49 static ptrdiff_t offsetOfVectorLength() { return OBJECT_OFFSETOF(IndexingHeader, u.lengths.vectorLength); }
53 u.lengths.publicLength = 0;
54 u.lengths.vectorLength = 0;
57 uint32_t vectorLength() const { return u.lengths.vectorLength; }
62 u.lengths.vectorLength = length;
65 uint32_t publicLength() const { return u.lengths.publicLength; }
66 void setPublicLength(uint32_t auxWord) { u.lengths.publicLength = auxWord; }
128 } lengths; member in union:JSC::IndexingHeader::__anon2653
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/
H A Djson_write.tcl119 set lengths 0 ; # This will be the max if the dict is empty, and
124 lappend lengths [::string length $str]
127 return [tcl::mathfunc::max {*}$lengths]
H A Dtext_write.tcl216 set lengths 0 ; # This will be the max if the list is empty, and
221 lappend lengths [::string length $str]
224 return [tcl::mathfunc::max {*}$lengths]
/macosx-10.10/zlib-55/zlib/contrib/puff/
H A Dpuff.c52 * 1.3 20 Mar 2002 - Go back to lengths for puff() parameters [Jean-loup]
87 #define MAXCODES (MAXLCODES+MAXDCODES) /* maximum codes lengths to read */
203 * a negative value if there is an error. If all of the lengths are zero, i.e.
210 * a simple integer ordering of codes of the same lengths. Hence below the
296 * Given the list of code lengths length[0..n-1] representing a canonical
307 * codes past the end of the incomplete lengths.
338 (h->count[length[symbol]])++; /* assumes lengths are within bounds */
342 /* check for an over-subscribed or incomplete set of lengths */
379 * - Literals, lengths, and the end-of-block code are combined into a single
383 * - There are 256 possible lengths (
526 short lengths[FIXLCODES]; local
650 short lengths[MAXCODES]; /* descriptor code lengths */ local
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/json/
H A Djson_write.tcl139 set lengths 0 ; # This will be the max if the dict is empty, and
144 lappend lengths [::string length $str]
147 return [tcl::mathfunc::max {*}$lengths]
/macosx-10.10/apache-793/httpd/modules/loggers/
H A Dmod_log_config.h50 int *lengths,
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dspeed.c302 static int lengths[SIZE_NUM]={16,64,256,1024,8*1024}; variable
1400 c[D_MD2][i]=c[D_MD2][0]*4*lengths[0]/lengths[i];
1401 c[D_MDC2][i]=c[D_MDC2][0]*4*lengths[0]/lengths[i];
1402 c[D_MD4][i]=c[D_MD4][0]*4*lengths[0]/lengths[i];
1403 c[D_MD5][i]=c[D_MD5][0]*4*lengths[0]/lengths[i];
1404 c[D_HMAC][i]=c[D_HMAC][0]*4*lengths[
[all...]
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DDrawingBasics.py137 lengths = ( 12.0, 6.0, 5.0, 6.0, 5.0, 6.0 )
146 CGContextSetLineDash(context, 0.0, lengths, 2)
150 CGContextSetLineDash(context, 0.0, lengths, 4)
154 CGContextSetLineDash(context, 0.0, lengths, 6)
158 CGContextSetLineDash(context, lengths[0]+lengths[1], lengths, 6)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Programming with Quartz/BasicDrawing/
H A DDrawingBasics.py137 lengths = ( 12.0, 6.0, 5.0, 6.0, 5.0, 6.0 )
146 CGContextSetLineDash(context, 0.0, lengths, 2)
150 CGContextSetLineDash(context, 0.0, lengths, 4)
154 CGContextSetLineDash(context, 0.0, lengths, 6)
158 CGContextSetLineDash(context, lengths[0]+lengths[1], lengths, 6)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Programming with Quartz/BasicDrawing/
H A DDrawingBasics.py137 lengths = ( 12.0, 6.0, 5.0, 6.0, 5.0, 6.0 )
146 CGContextSetLineDash(context, 0.0, lengths, 2)
150 CGContextSetLineDash(context, 0.0, lengths, 4)
154 CGContextSetLineDash(context, 0.0, lengths, 6)
158 CGContextSetLineDash(context, lengths[0]+lengths[1], lengths, 6)
/macosx-10.10/ICU-531.30/icuSources/common/
H A Ddictionarydata.h71 virtual int32_t matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count,
84 virtual int32_t matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count,
101 virtual int32_t matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count,
H A Ddictionarydata.cpp43 int32_t UCharsDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count, int32_t limit, int32_t *values) const { argument
58 lengths[count++] = numChars;
107 int32_t BytesDictionaryMatcher::matches(UText *text, int32_t maxLength, int32_t *lengths, int32_t &count, int32_t limit, int32_t *values) const { argument
122 lengths[count++] = numChars;
H A Ddictbe.cpp106 // list of word candidate lengths, in increasing length order
107 int32_t lengths[POSSIBLE_WORD_LIST_MAX]; member in class:PossibleWord
150 prefix = dict->matches(text, rangeEnd-start, lengths, count, sizeof(lengths)/sizeof(lengths[0]));
157 utext_setNativeIndex(text, start+lengths[count-1]);
166 utext_setNativeIndex(text, offset + lengths[mark]);
167 return lengths[mark];
173 utext_setNativeIndex(text, offset + lengths[--current]);
1045 AutoBuffer<int32_t, maxWordSize> lengths(numChar
[all...]
H A Dunames.cpp505 * expandGroupLengths() reads a block of compressed lengths of 32 strings and
506 * expands them into offsets and lengths for each string.
511 * The offsets and lengths arrays must be at least 33 (one more) long because
516 uint16_t offsets[LINES_PER_GROUP+1], uint16_t lengths[LINES_PER_GROUP+1]) {
517 /* read the lengths of the 32 strings in this group and get each string's offset */
521 /* all 32 lengths must be read to get the offset of the first group string */
540 *lengths++=length;
552 *lengths++=length;
570 uint16_t offsets[LINES_PER_GROUP+2], lengths[LINES_PER_GROUP+2]; local
572 s=expandGroupLengths(s, offsets, lengths);
515 expandGroupLengths(const uint8_t *s, uint16_t offsets[LINES_PER_GROUP+1], uint16_t lengths[LINES_PER_GROUP+1]) argument
603 uint16_t offsets[LINES_PER_GROUP+2], lengths[LINES_PER_GROUP+2]; local
1343 uint16_t offsets[LINES_PER_GROUP+2], lengths[LINES_PER_GROUP+2]; local
1991 uint16_t offsets[LINES_PER_GROUP+1], lengths[LINES_PER_GROUP+1]; local
[all...]
/macosx-10.10/ICU-531.30/icuSources/test/perf/dicttrieperf/
H A Ddicttrieperf.cpp215 // Prime the prefix lengths so that we don't keep prefixLength at 0 until
348 int32_t *lengths, int &count, int limit ) {
364 // lengths[count++]=(int32_t)utext_getNativeIndex(text);
365 lengths[count++]=numChars; // CompactTrieDictionary just counts chars too.
441 int32_t lengths[20]; local
452 lengths, count, LENGTHOF(lengths));
453 if(count==0 || lengths[count-1]!=lines[i].len) {
547 int32_t *lengths, int &count, int limit ) {
558 // lengths[coun
346 ucharsTrieMatches(UCharsTrie &trie, UText *text, int32_t textLimit, int32_t *lengths, int &count, int limit ) argument
545 bytesTrieMatches(BytesTrie &trie, UText *text, int32_t textLimit, int32_t *lengths, int &count, int limit ) argument
590 int32_t lengths[20]; local
[all...]
/macosx-10.10/tcl-105/tcl_ext/sdx/sdx/lib/app-sdx/
H A Dmkzipkit.tcl117 x(date) x(crc32) x(sizes) x(lengths) \
124 foreach size $x(lengths) var {filename extrafield comment} {
144 x(date) x(crc32) x(sizes) x(lengths) \
/macosx-10.10/ncurses-44/ncurses/test/
H A Dedit_field.c308 char lengths[80]; local
444 sprintf(lengths, "%d", length);
445 set_field_buffer(before, 1, lengths);
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.80/lib/DateTime/Format/Builder/
H A DParser.pm397 my ($lengths, $others) = $class->sort_parsers( $options, \@specs );
436 if (%$lengths)
439 my $parser = $lengths->{$length};
487 my (%lengths, @others);
502 my @lengths = ref $spec->{length}
505 for my $length ( @lengths )
507 push @{ $lengths{$length} }, $code;
522 while (my ($length, $parsers) = each %lengths)
524 $lengths{$length} = $class->chain_parsers( $parsers );
527 return ( \%lengths, \
[all...]
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Builder-0.81/lib/DateTime/Format/Builder/
H A DParser.pm228 my ( $lengths, $others ) = $class->sort_parsers( $options, \@specs );
266 if (%$lengths) {
268 my $parser = $lengths->{$length};
293 my ( %lengths, @others );
306 my @lengths
310 for my $length (@lengths) {
311 push @{ $lengths{$length} }, $code;
325 while ( my ( $length, $parsers ) = each %lengths ) {
326 $lengths{$length} = $class->chain_parsers($parsers);
329 return ( \%lengths, \
[all...]
/macosx-10.10/gnudiff-19/diffutils/src/
H A Ddiff3.c84 size_t *lengths[2]; /* Line lengths (including newlines, if any) */
94 size_t *lengths[3]; /* Line lengths (including newlines, if any) */
116 ((diff)->lengths[filenum][linenum])
124 ((diff)->lengths[filenum])
959 sizeof *bptr->lengths[1]));
970 bptr->lengths[0] = bptr->lengths[1] = 0;
1009 bptr->lengths[
83 size_t *lengths[2]; /* Line lengths (including newlines, if any) */ member in struct:diff_block
93 size_t *lengths[3]; /* Line lengths (including newlines, if any) */ member in struct:diff3_block
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DTextCodecUTF8.cpp67 static const uint8_t lengths[256] = { local
85 return lengths[firstByte];
/macosx-10.10/CPANInternal-159.1/Graph-0.94/lib/Graph/TransitiveClosure/
H A DMatrix.pm366 paths (lengths and vertices) between vertices, and after that query
408 By default the path lengths are not computed, only the boolean transitivity.
409 By using true for C<path_length> also the path lengths will be computed,
/macosx-10.10/CPANInternal-159.1/Graph-0.96/lib/Graph/TransitiveClosure/
H A DMatrix.pm366 paths (lengths and vertices) between vertices, and after that query
408 By default the path lengths are not computed, only the boolean transitivity.
409 By using true for C<path_length> also the path lengths will be computed,
/macosx-10.10/tcpdump-61/tcpdump/
H A Dutil.c251 static const char *lengths[] = {"y", "w", "d", "h", "m", "s"}; local
253 const char **l = lengths;
/macosx-10.10/CPANInternal-159.1/Graph-0.94/lib/Graph/
H A DTransitiveClosure.pm114 (lengths and vertices) between vertices, and after that query the

Completed in 234 milliseconds

12