Searched refs:inputIndex (Results 1 - 25 of 26) sorted by relevance

12

/external/zlib/src/contrib/dotzlib/DotZLib/
H A DInflater.cs61 int inputIndex = offset;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
75 inputIndex += (int)_ztream.total_in;
H A DDeflater.cs61 int inputIndex = offset;
64 while (err >= 0 && inputIndex < total)
66 copyInput(data, inputIndex, Math.Min(total - inputIndex, kBufferSize));
76 inputIndex += (int)_ztream.total_in;
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorBroadcasting.h173 Index inputIndex = 0; local
178 inputIndex += idx * m_inputStrides[i];
183 inputIndex += (idx % m_impl.dimensions()[i]) * m_inputStrides[i];
190 inputIndex += index;
195 inputIndex += (index % m_impl.dimensions()[0]);
198 return m_impl.coeff(inputIndex);
203 Index inputIndex = 0;
208 inputIndex += idx * m_inputStrides[i];
213 inputIndex += (idx % m_impl.dimensions()[i]) * m_inputStrides[i];
220 inputIndex
[all...]
H A DTensorInflation.h142 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE bool getInputIndex(Index index, Index* inputIndex) const
145 *inputIndex = 0;
152 *inputIndex += idx / m_strides[i] * m_inputStrides[i];
158 *inputIndex += index / m_strides[0];
166 *inputIndex += idx / m_strides[i] * m_inputStrides[i];
172 *inputIndex += index / m_strides[NumDims - 1];
179 Index inputIndex = 0; local
180 if (getInputIndex(index, &inputIndex)) {
181 return m_impl.coeff(inputIndex);
H A DTensorChipping.h212 Index inputIndex = index * m_inputStride + m_inputOffset; local
215 values[i] = m_impl.coeff(inputIndex);
216 inputIndex += m_inputStride;
229 Index inputIndex = idx * m_inputStride + m_inputOffset + rem; local
230 return m_impl.template packet<LoadMode>(inputIndex);
280 Index inputIndex; local
285 inputIndex = index * m_inputStride + m_inputOffset;
290 inputIndex = index + m_inputOffset;
293 inputIndex = idx * m_inputStride + m_inputOffset;
295 inputIndex
352 Index inputIndex = index * this->m_inputStride + this->m_inputOffset; local
366 const Index inputIndex = idx * this->m_inputStride + this->m_inputOffset + rem; local
[all...]
H A DTensorReverse.h156 Index inputIndex = 0;
164 inputIndex += idx * m_strides[i] ;
167 inputIndex += (m_dimensions[0] - index - 1);
169 inputIndex += index;
178 inputIndex += idx * m_strides[i] ;
181 inputIndex += (m_dimensions[NumDims-1] - index - 1);
183 inputIndex += index;
186 return inputIndex;
H A DTensorPadding.h149 Index inputIndex = 0;
156 inputIndex += (idx - m_padding[i].first) * m_inputStrides[i];
162 inputIndex += (index - m_padding[0].first);
169 inputIndex += (idx - m_padding[i].first) * m_inputStrides[i];
175 inputIndex += (index - m_padding[NumDims-1].first);
177 return m_impl.coeff(inputIndex);
264 Index inputIndex = 0; local
283 inputIndex += (idx - m_padding[i].first) * m_inputStrides[i];
308 inputIndex += (index - m_padding[0].first);
309 return m_impl.template packet<Unaligned>(inputIndex);
321 Index inputIndex = 0; local
[all...]
H A DTensorShuffling.h192 Index inputIndex = 0; local
196 inputIndex += idx * m_inputStrides[i];
199 return inputIndex + index * m_inputStrides[0];
203 inputIndex += idx * m_inputStrides[i];
206 return inputIndex + index * m_inputStrides[NumDims - 1];
H A DTensorStriding.h230 Index inputIndex = 0; local
234 inputIndex += idx * m_inputStrides[i];
237 inputIndex += index * m_inputStrides[0];
241 inputIndex += idx * m_inputStrides[i];
244 inputIndex += index * m_inputStrides[NumDims-1];
246 return inputIndex;
H A DTensorPatch.h162 Index inputIndex = 0; local
169 inputIndex += (patchIdx + offsetIdx) * m_inputStrides[i];
177 inputIndex += (patchIdx + offsetIdx) * m_inputStrides[i];
180 inputIndex += (patchIndex + patchOffset);
181 return m_impl.coeff(inputIndex);
H A DTensorMorphing.h500 Index inputIndex = 0; local
504 inputIndex += (idx + m_offsets[i]) * m_inputStrides[i];
507 inputIndex += (index + m_offsets[0]);
511 inputIndex += (idx + m_offsets[i]) * m_inputStrides[i];
514 inputIndex += (index + m_offsets[NumDims-1]);
516 return inputIndex;
817 Index inputIndex = 0; local
821 inputIndex += idx * m_inputStrides[i] + m_offsets[i];
827 inputIndex += idx * m_inputStrides[i] + m_offsets[i];
831 return inputIndex;
[all...]
H A DTensorImagePatch.h358 const Index inputIndex = depth + origInputRow * m_rowInputStride + origInputCol * m_colInputStride + otherIndex * m_patchInputStride; local
359 return m_impl.coeff(inputIndex);
413 const Index inputIndex = depth + inputRows[0] * m_rowInputStride + inputCols[0] * m_colInputStride + otherIndex * m_patchInputStride; local
414 return m_impl.template packet<Unaligned>(inputIndex);
H A DTensorVolumePatch.h399 const Index inputIndex = depth + local
405 return m_impl.coeff(inputIndex);
486 const Index inputIndex = depth + local
491 return m_impl.template packet<Unaligned>(inputIndex);
H A DTensorConvolution.h117 Index inputIndex = 0; local
121 inputIndex += idx * m_inputStrides[d];
124 inputIndex += p * m_inputStrides[NumKernelDims];
132 inputIndex += idx * m_inputStrides[d];
135 inputIndex += p * m_inputStrides[limit];
137 return inputIndex;
/external/skia/src/core/
H A DSkMD5.cpp44 unsigned int inputIndex; local
49 inputIndex = bufferAvailable;
51 inputIndex = 0;
54 for (; inputIndex + 63 < inputLength; inputIndex += 64) {
55 transform(this->state, &input[inputIndex]);
60 inputIndex = 0;
63 memcpy(&this->buffer[bufferIndex], &input[inputIndex], inputLength - inputIndex);
/external/icu/icu4c/source/i18n/
H A Duspoof.cpp654 int32_t inputIndex = 0; local
657 for (inputIndex=0; inputIndex < normalizedLen; ) {
658 UChar32 c = nfdId.char32At(inputIndex);
659 inputIndex += U16_LENGTH(c);
H A Drematch.cpp5210 int64_t inputIndex = fp->fInputIdx;
5217 for (int64_t groupIndex = groupStartIdx; groupIndex < groupEndIdx; ++groupIndex,++inputIndex) {
5218 if (inputIndex >= fActiveLimit) {
5223 if (inputBuf[groupIndex] != inputBuf[inputIndex]) {
5229 inputIndex < fActiveLimit && U16_IS_TRAIL(inputBuf[inputIndex])) {
5235 fp->fInputIdx = inputIndex;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DSpoofChecker.java1410 for (int inputIndex = 0; inputIndex < normalizedLen;) {
1411 int c = Character.codePointAt(nfdId, inputIndex);
1412 inputIndex += Character.charCount(c);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DSpoofChecker.java1470 for (int inputIndex = 0; inputIndex < normalizedLen;) {
1471 int c = Character.codePointAt(nfdId, inputIndex);
1472 inputIndex += Character.charCount(c);
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 464 milliseconds

12