HomeSort by relevance Sort by last modified time
    Searched refs:lengths (Results 76 - 100 of 363) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/
dtptngen_impl.h 142 int8_t lengths[UDATPG_FIELD_COUNT]; member in class:SkeletonFields
147 && uprv_memcmp(lengths, other.lengths, sizeof(lengths)) == 0);
  /external/mesa3d/src/mesa/main/
debug_output.h 80 GLsizei* lengths, GLchar* messageLog);
  /external/tensorflow/tensorflow/contrib/eager/python/examples/spinn/
data.py 204 """Calculate bin boundaries given a histogram of lengths and minimum bin size.
218 lengths = sorted(length2count.keys())
220 for length in lengths:
225 if bounds[-1] != lengths[-1]:
226 bounds.append(lengths[-1])
349 # lengths in the pair. During training, the batches are expected to be
359 # similar max lengths are batched together, minimizing the inefficiency
360 # due to uneven max lengths. The sentences are batched differently in
363 # take care of any remaining unevenness of the max sentence lengths.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-m68hc11/
adj-brset.s 11 ;;; different lengths.
  /external/tensorflow/tensorflow/python/ops/
tensor_array_grad.py 211 lengths = op.outputs[1]
217 u_g = g.split(grad, lengths=lengths)
242 # handle, value, lengths, flow_in
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
SentenceLevelAdapter.java 178 final int[] lengths = new int[querySize];
192 lengths[i] = item.mLength;
195 return new SentenceSuggestionsInfo(reconstructedSuggestions, offsets, lengths);
  /prebuilts/go/darwin-x86/src/compress/bzip2/
huffman.go 75 // lengths of each symbol. The maximum code length is 32 bits.
76 func newHuffmanTree(lengths []uint8) (huffmanTree, error) {
85 if len(lengths) < 2 {
93 pairs := huffmanSymbolLengthPairs(make([]huffmanSymbolLengthPair, len(lengths)))
94 for i, length := range lengths {
108 codes := huffmanCodes(make([]huffmanCode, len(lengths)))
  /prebuilts/go/linux-x86/src/compress/bzip2/
huffman.go 75 // lengths of each symbol. The maximum code length is 32 bits.
76 func newHuffmanTree(lengths []uint8) (huffmanTree, error) {
85 if len(lengths) < 2 {
93 pairs := huffmanSymbolLengthPairs(make([]huffmanSymbolLengthPair, len(lengths)))
94 for i, length := range lengths {
108 codes := huffmanCodes(make([]huffmanCode, len(lengths)))
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
UnicodeSetCloseOver.java 135 * @param lengths Accumulate a list of unique length structures,
139 * Typical contents of 'lengths': { "111", "1111", "112",
145 Vector lengths) {
157 // Note that pairs are included in 'lengths'
165 // Make a string of the lengths, e.g., "111" means 3
177 if (!lengths.contains(buf.toString())) {
178 lengths.add(buf.toString());
196 Vector lengths = new Vector(); // "111", "12", "22", etc. local
198 analyzeCaseData(equivClasses, pairs, nonpairs, lengths);
  /external/tensorflow/tensorflow/contrib/seq2seq/python/kernel_tests/
beam_search_decoder_test.py 123 lengths=constant_op.constant(
157 self.assertAllEqual(next_state_.lengths, [[3, 3, 3], [3, 3, 3]])
178 lengths=ops.convert_to_tensor(
212 self.assertAllEqual(next_state_.lengths, [[1, 3, 3], [3, 1, 3]])
278 lengths=_lengths,
316 self.assertEqual((next_state_.lengths[:, :-3] > 0).all(), True)
317 self.assertAllEqual(next_state_.lengths[:, -3:], [[0, 0, 0], [0, 0, 0]])
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/
disklrucache-SNAPSHOT.jar 
  /external/mtpd/
pptp.c 58 static uint8_t lengths[] = { variable
136 uint16_t length = lengths[message];
272 if (incoming.length < lengths[incoming.message]) {
  /external/tensorflow/tensorflow/compiler/tests/
tensor_array_ops_test.py 186 lengths = constant_op.constant([0, 0, 0])
187 w0 = ta.split(convert([]), lengths=lengths)
200 lengths = constant_op.constant([1, 1, 1])
201 w0 = ta.split(convert([1.0, 2.0, 3.0]), lengths=lengths)
214 lengths = constant_op.constant([1, 1, 1])
216 convert([[1.0, 101.0], [2.0, 201.0], [3.0, 301.0]]), lengths=lengths)
359 lengths = array_ops.placeholder(dtypes.int64
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/
models.py 178 def _reverse_seq(input_seq, lengths):
179 """Reverse a list of Tensors up to specified lengths.
183 lengths: A tensor of dimension batch_size, containing lengths for each
190 if lengths is None:
200 s_reversed = array_ops_.reverse_sequence(s_joined, lengths, 0, 1)
238 containing the actual lengths for each of the sequences.
  /frameworks/base/core/java/android/content/
IntentFilter.java 310 int[] lengths, int lenPos) {
312 final int N = lengths[lenPos];
320 int[] lengths, int lenPos) {
321 if (findStringInSet(set, string, lengths, lenPos) >= 0) return set;
325 lengths[lenPos] = 1;
328 final int N = lengths[lenPos];
331 lengths[lenPos] = N+1;
339 lengths[lenPos] = N+1;
344 int[] lengths, int lenPos) {
345 int pos = findStringInSet(set, string, lengths, lenPos)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/protocol/
Vvm3Protocol.java 310 String[] lengths = preferences.getString(OmtpConstants.TUI_PASSWORD_LENGTH, "").split("-"); local
311 if (lengths.length == 2) {
313 return Integer.parseInt(lengths[0]);
  /external/deqp/modules/gles2/functional/
es2fShaderApiTests.cpp 67 std::vector<int> lengths; member in struct:deqp::gles2::Functional::__anon18328::ShaderSources
97 if (sources.lengths.size() > 0)
98 shader.setSources((int)cStrings.size(), &cStrings[0], &sources.lengths[0]);
116 out.lengths.push_back((int)sliceSize);
127 out.lengths.push_back(lastStringLength);
669 DE_ASSERT(sources.lengths.size() > 0);
670 DE_ASSERT(sources.lengths.size() == sources.strings.size());
680 const int unpaddedLength = sources.lengths[ndx];
684 sources.lengths[ndx] = m_rnd.getInt(-10, -1);
1088 + (explicitLengths ? ", using explicitly specified string lengths" : ""
    [all...]
  /external/icu/icu4c/source/common/
unames.cpp 505 * expandGroupLengths() reads a block of compressed lengths of 32 strings and
506 * expands them into offsets and lengths for each string.
507 * Lengths are stored with a variable-width encoding in consecutive nibbles:
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
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
1992 uint16_t offsets[LINES_PER_GROUP+1], lengths[LINES_PER_GROUP+1]; local
    [all...]
  /external/mesa3d/src/mesa/sparc/
sparc.c 94 const GLfloat *lengths, \
  /external/mesa3d/src/mesa/x86/
x86_xform.h 74 const GLfloat *lengths, \
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 447 final int[] lengths = new int[querySize]; local
461 lengths[i] = item.mLength;
468 + lengths[i]);
471 return new SentenceSuggestionsInfo(reconstructedSuggestions, offsets, lengths);
  /external/deqp/external/openglcts/modules/gl/
gl4cKHRDebugTests.cpp 106 0 /* ids */, 0 /* severities */, 0 /* lengths */, 0 /* messageLog */);
370 GLsizei lengths[count]; local
376 m_gl->getDebugMessageLog(count /* count */, -1 /* bufSize */, sources, types, ids, severities, lengths,
1335 GLsizei lengths[read_messages]; local
1600 std::vector<GLsizei> lengths; local
1902 GLsizei lengths[read_messages]; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
ShaderLang.cpp 748 size_t* lengths = new size_t[numTotal]; local
754 lengths[s + numPre] = strlen(shaderStrings[s]);
756 lengths[s + numPre] = inputLengths[s];
776 glslang::TInputScanner userInput(numStrings, &strings[numPre], &lengths[numPre]);
    [all...]
  /external/syslinux/gpxe/src/net/tcp/
iscsi.c 221 /* lengths left as zero */
365 ISCSI_SET_LENGTHS ( data_out->lengths, 0, len );
405 len = ISCSI_DATA_LEN ( data_out->lengths );
551 ISCSI_SET_LENGTHS ( request->lengths, 0, len );
590 len = ISCSI_DATA_LEN ( request->lengths );
    [all...]
  /external/freetype/src/type42/
t42parse.c 1021 name_table->lengths [0] );
1028 code_table->lengths [0] );
1035 name_table->lengths [notdef_index] );
    [all...]

Completed in 884 milliseconds

1 2 34 5 6 7 8 91011>>