HomeSort by relevance Sort by last modified time
    Searched refs:lengths (Results 1 - 25 of 199) sorted by null

1 2 3 4 5 6 7 8

  /external/skia/include/gpu/gl/
GrGLSLPrettyPrint.h 14 int* lengths,
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DictionaryMatcher.java 23 * @param lengths An array that is filled with the lengths of words that matched.
24 * @param count Filled with the number of elements output in lengths.
25 * @param limit The maximum amount of words to output. Must be less than or equal to lengths.length.
29 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
32 public int matches(CharacterIterator text, int maxLength, int[] lengths,
34 return matches(text, maxLength, lengths, count, limit, null);
DictionaryBreakEngine.java 24 //list of word candidate lengths, in increasing length order
25 private int lengths[]; field in class:DictionaryBreakEngine.PossibleWord
34 lengths = new int[POSSIBLE_WORD_LIST_MAX];
44 prefix = dict.matches(fIter, rangeEnd - start, lengths, count, lengths.length);
51 fIter.setIndex(start + lengths[count[0]-1]);
60 fIter.setIndex(offset + lengths[mark]);
61 return lengths[mark];
68 fIter.setIndex(offset + lengths[--current]);
BytesDictionaryMatcher.java 43 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) {
60 lengths[count] = numChars;
CharsDictionaryMatcher.java 22 public int matches(CharacterIterator text_, int maxLength, int[] lengths, int[] count_, int limit, int[] values) {
39 lengths[count] = numChars;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DictionaryMatcher.java 22 * @param lengths An array that is filled with the lengths of words that matched.
23 * @param count Filled with the number of elements output in lengths.
24 * @param limit The maximum amount of words to output. Must be less than or equal to lengths.length.
28 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
31 public int matches(CharacterIterator text, int maxLength, int[] lengths,
33 return matches(text, maxLength, lengths, count, limit, null);
DictionaryBreakEngine.java 23 //list of word candidate lengths, in increasing length order
24 private int lengths[]; field in class:DictionaryBreakEngine.PossibleWord
33 lengths = new int[POSSIBLE_WORD_LIST_MAX];
43 prefix = dict.matches(fIter, rangeEnd - start, lengths, count, lengths.length);
50 fIter.setIndex(start + lengths[count[0]-1]);
59 fIter.setIndex(offset + lengths[mark]);
60 return lengths[mark];
67 fIter.setIndex(offset + lengths[--current]);
  /external/toybox/toys/posix/
wc.c 34 static void show_lengths(unsigned long *lengths, char *name)
39 xprintf(" %ld"+nospace, lengths[i]);
42 TT.totals[i] += lengths[i];
51 unsigned long word=0, lengths[]={0,0,0}; local
58 lengths[2] = st.st_size;
68 lengths[2] += len;
85 if (toybuf[i]==10) lengths[0]++;
88 if (!word) lengths[1]++;
91 lengths[2]++;
96 show_lengths(lengths, name)
    [all...]
  /external/skia/tests/
GrGLSLPrettyPrintTest.cpp 93 SkTArray<int> lengths; local
95 lengths.push_back((int)input1.size());
97 lengths.push_back((int)input2.size());
99 lengths.push_back((int)input3.size());
101 lengths.push_back((int)input4.size());
103 lengths.push_back((int)input5.size());
105 lengths.push_back((int)input6.size());
107 SkString test = GrGLSLPrettyPrint::PrettyPrintGLSL(testStr.begin(), lengths.begin(),
112 lengths.reset();
114 lengths.push_back((int)neg1.size())
    [all...]
  /external/skia/src/gpu/gl/builders/
GrGLShaderStringBuilder.h 20 int* lengths,
GrGLShaderStringBuilder.cpp 24 int* lengths,
36 SkString prettySource = GrGLSLPrettyPrint::PrettyPrintGLSL(strings, lengths, count, false);
41 GR_GL_CALL(gli, ShaderSource(shaderId, count, strings, lengths));
48 SkString shader = GrGLSLPrettyPrint::PrettyPrintGLSL(strings, lengths, count, false);
74 SkDebugf("%s", GrGLSLPrettyPrint::PrettyPrintGLSL(strings, lengths, count, true).c_str());
84 SkDebugf("%s", GrGLSLPrettyPrint::PrettyPrintGLSL(strings, lengths, count, true).c_str());
GrGLSLPrettyPrint.cpp 16 int* lengths,
36 fLength = lengths[i];
197 int* lengths,
201 return pp.prettify(strings, lengths, count, countlines);
  /external/zopfli/src/zopfli/
tree.h 39 void ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits,
45 actual theoritical bit lengths according to the entropy. Since the resulting
tree.c 30 void ZopfliLengthsToSymbols(const unsigned* lengths, size_t n, unsigned maxbits,
47 assert(lengths[i] <= maxbits);
48 bl_count[lengths[i]]++;
60 unsigned len = lengths[i];
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
shadow-handler.js 20 lengths: [],
31 shadow.lengths.push(result[0]);
54 while (left.lengths.length < Math.max(left.lengths.length, right.lengths.length))
55 left.lengths.push({px: 0});
56 while (right.lengths.length < Math.max(left.lengths.length, right.lengths.length))
57 right.lengths.push({px: 0})
19 lengths: [], property
    [all...]
  /external/zlib/src/contrib/puff/
puff.c 52 * 1.3 20 Mar 2002 - Go back to lengths for puff() parameters [Gailly]
94 #define MAXCODES (MAXLCODES+MAXDCODES) /* maximum codes lengths to read */
213 * a negative value if there is an error. If all of the lengths are zero, i.e.
220 * a simple integer ordering of codes of the same lengths. Hence below the
309 * Given the list of code lengths length[0..n-1] representing a canonical
320 * codes past the end of the incomplete lengths.
351 (h->count[length[symbol]])++; /* assumes lengths are within bounds */
355 /* check for an over-subscribed or incomplete set of lengths */
393 * - Literals, lengths, and the end-of-block code are combined into a single
397 * - There are 256 possible lengths (3..258), and so 29 symbols are not enoug
546 short lengths[FIXLCODES]; local
670 short lengths[MAXCODES]; \/* descriptor code lengths *\/ local
    [all...]
  /external/libvorbis/vq/
bookutil.h 39 extern void build_tree_from_lengths(int vals, long *hist, long *lengths);
40 extern void build_tree_from_lengths0(int vals, long *hist, long *lengths);
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetDebugMessageLog.java 1 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
14 int[] lengths,
19 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
27 java.nio.IntBuffer lengths,
30 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
43 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
glGetDebugMessageLogKHR.java 1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
14 int[] lengths,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
27 java.nio.IntBuffer lengths,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
  /external/autotest/client/cros/audio/
audio_data.py 129 lengths = [len(self.channel_data[ch])
131 if len(set(lengths)) != 1:
133 'Channel lengths are not the same: %r' % lengths)
134 length = lengths[0]
  /frameworks/base/core/java/android/view/textservice/
SentenceSuggestionsInfo.java 30 * you to put multiple {@link SuggestionsInfo}s on a sentence with the offsets and the lengths
43 * @param lengths the array of lengths of suggestions
46 SuggestionsInfo[] suggestionsInfos, int[] offsets, int[] lengths) {
47 if (suggestionsInfos == null || offsets == null || lengths == null) {
50 if (suggestionsInfos.length != offsets.length || offsets.length != lengths.length) {
56 mLengths = Arrays.copyOf(lengths, infoSize);
  /external/mesa3d/src/mesa/math/
m_norm_tmp.h 38 * lengths - length of each incoming normal (may be NULL) (a display list
46 const GLfloat *lengths,
59 if (!lengths) {
98 GLfloat len = lengths[i];
113 const GLfloat *lengths,
126 if (!lengths) {
163 GLfloat len = lengths[i];
178 const GLfloat *lengths,
191 (void) lengths;
207 const GLfloat *lengths,
    [all...]
  /external/icu/icu4c/source/common/
dictionarydata.h 78 * @param lengths output array, filled with the lengths of the matches, in order,
79 * from shortest to longest. Lengths are in native indexing units
81 * @param cpLengths output array, filled with the lengths of the matches, in order,
82 * from shortest to longest. Lengths are the number of Unicode code points.
92 int32_t *lengths, int32_t *cpLengths, int32_t *values,
107 int32_t *lengths, int32_t *cpLengths, int32_t *values,
125 int32_t *lengths, int32_t *cpLengths, int32_t *values,
  /development/samples/SpellChecker/SampleSpellCheckerService/src/com/example/android/samplespellcheckerservice/
SampleSpellCheckerService.java 103 final int[] lengths; local
119 lengths = new int[] { 4, 4, 4 };
131 lengths = new int[] { ti.getText().length() };
134 new SentenceSuggestionsInfo(sis, lengths, offsets);
  /external/mesa3d/src/mesa/tnl/
t_vb_normals.c 54 const GLfloat *lengths; local
59 /* We can only use the display list's saved normal lengths if we've
63 lengths = NULL;
65 lengths = VB->NormalLengthPtr;
70 lengths,

Completed in 452 milliseconds

1 2 3 4 5 6 7 8