Searched refs:outputSize (Results 1 - 22 of 22) sorted by relevance

/external/conscrypt/benchmark-base/src/main/java/org/conscrypt/
H A DCipherEncryptBenchmark.java64 final int outputSize; field in class:CipherEncryptBenchmark.EncryptStrategy
73 outputSize = cipher.getOutputSize(messageSize);
101 cipherBytes = new byte[outputSize];
121 output = ByteBuffer.allocate(outputSize);
125 output = ByteBuffer.allocateDirect(outputSize);
129 output = ByteBuffer.allocateDirect(outputSize);
133 output = ByteBuffer.allocate(outputSize);
/external/tensorflow/tensorflow/contrib/lite/kernels/
H A Dembedding_lookup.cc62 TfLiteIntArray* outputSize = TfLiteIntArrayCreate(NumDimensions(value)); local
64 outputSize->data[0] = SizeOfDimension(lookup, 0);
65 outputSize->data[1] = SizeOfDimension(value, 1);
67 outputSize->data[i] = SizeOfDimension(value, i);
69 return context->ResizeTensor(context, output, outputSize);
H A Dhashtable_lookup.cc89 TfLiteIntArray* outputSize = TfLiteIntArrayCreate(NumDimensions(value)); local
90 outputSize->data[0] = SizeOfDimension(lookup, 0);
92 outputSize->data[i] = SizeOfDimension(value, i);
94 status = context->ResizeTensor(context, output, outputSize);
H A Dlsh_projection.cc96 TfLiteIntArray* outputSize = TfLiteIntArrayCreate(1); local
99 outputSize->data[0] = SizeOfDimension(hash, 0);
102 outputSize->data[0] = SizeOfDimension(hash, 0) * SizeOfDimension(hash, 1);
107 return context->ResizeTensor(context, output, outputSize);
H A Ddepthwise_conv.cc161 TfLiteIntArray* outputSize = TfLiteIntArrayCreate(4); local
162 outputSize->data[0] = batches;
163 outputSize->data[1] = out_height;
164 outputSize->data[2] = out_width;
165 outputSize->data[3] = channels_out;
166 return context->ResizeTensor(context, output, outputSize);
H A Dpooling.cc114 TfLiteIntArray* outputSize = TfLiteIntArrayCreate(4); local
115 outputSize->data[0] = batches;
116 outputSize->data[1] = outHeight;
117 outputSize->data[2] = outWidth;
118 outputSize->data[3] = channels_out;
119 return context->ResizeTensor(context, output, outputSize);
/external/brotli/java/org/brotli/wrapper/dec/
H A DBrotliDecoderChannel.java60 int outputSize = decode();
61 if (outputSize == -1) {
/external/wycheproof/java/com/google/security/wycheproof/testcases/
H A DAesGcmTest.java228 int outputSize = cipher.getOutputSize(test.pt.length);
229 ByteBuffer ctBuffer = ByteBuffer.allocate(outputSize);
237 outputSize = cipher.getOutputSize(test.ct.length);
238 ByteBuffer decrypted = ByteBuffer.allocate(outputSize);
251 int outputSize = cipher.getOutputSize(test.pt.length);
252 byte[] backingArray = new byte[outputSize];
277 int outputSize = cipher.getOutputSize(test.pt.length);
278 ByteBuffer ctBuffer = ByteBuffer.allocate(outputSize);
287 outputSize = cipher.getOutputSize(test.ct.length);
288 ByteBuffer decrypted = ByteBuffer.allocate(outputSize);
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DArabicShaping.java1821 int outputSize = sourceLength;
1825 outputSize = shapeUnicode(temp, 0, sourceLength, destSize, 1);
1832 outputSize = shapeUnicode(temp, 0, sourceLength, destSize, 2);
1835 outputSize = shapeUnicode(temp, 0, sourceLength, destSize, 0);
1839 outputSize = handleTashkeelWithTatweel(temp,sourceLength);
1845 outputSize = deShapeUnicode(temp, 0, sourceLength, destSize);
1852 if (outputSize > destSize) {
1875 for (int i = 0; i < outputSize; ++i) {
1888 for (int i = 0; i < outputSize; ++i) {
1898 shapeToArabicDigitsWithContext(temp, 0, outputSize, digitBas
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DArabicShaping.java1869 int outputSize = sourceLength;
1873 outputSize = shapeUnicode(temp, 0, sourceLength, destSize, 1);
1880 outputSize = shapeUnicode(temp, 0, sourceLength, destSize, 2);
1883 outputSize = shapeUnicode(temp, 0, sourceLength, destSize, 0);
1887 outputSize = handleTashkeelWithTatweel(temp,sourceLength);
1893 outputSize = deShapeUnicode(temp, 0, sourceLength, destSize);
1900 if (outputSize > destSize) {
1923 for (int i = 0; i < outputSize; ++i) {
1936 for (int i = 0; i < outputSize; ++i) {
1946 shapeToArabicDigitsWithContext(temp, 0, outputSize, digitBas
[all...]
/external/icu/icu4c/source/common/
H A Dushape.cpp1500 int32_t outputSize, spacesCountl=0, spacesCountr=0; local
1543 outputSize=calculateSize(source,sourceLength,destCapacity,options);
1545 outputSize=sourceLength;
1548 if(outputSize>destCapacity) {
1551 return outputSize;
1555 * need a temporary buffer of size max(outputSize, sourceLength)
1558 if(sourceLength>outputSize) {
1559 outputSize=sourceLength;
1563 if(outputSize<=UPRV_LENGTHOF(buffer)) {
1564 outputSize
[all...]
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmComputeShaderTestUtil.hpp121 size_t outputSize = m_numOutputElements * sizeof(deInt32); local
122 bytes.resize(outputSize, 0xffu);
/external/lz4/lib/
H A Dlz4.c1093 int outputSize, /* If endOnInput==endOnInputSize, this value is the max size of Output Buffer. */
1109 BYTE* const oend = op + outputSize;
1124 if ((endOnInput) && (unlikely(outputSize==0))) return ((inputSize==1) && (*ip==0)) ? 0 : -1; /* Empty output buffer */
1125 if ((!endOnInput) && (unlikely(outputSize==0))) return (*ip==0?1:-1);
1416 int LZ4_uncompress (const char* source, char* dest, int outputSize) { return LZ4_decompress_fast(source, dest, outputSize); } argument
1089 LZ4_decompress_generic( const char* const source, char* const dest, int inputSize, int outputSize, int endOnInput, int partialDecoding, int targetOutputSize, int dict, const BYTE* const lowPrefix, const BYTE* const dictStart, const size_t dictSize ) argument
/external/tensorflow/tensorflow/contrib/lite/
H A Dinterpreter_test.cc455 TfLiteIntArray* outputSize = TfLiteIntArrayCreate(1);
456 outputSize->data[0] = 1;
457 return context->ResizeTensor(context, output, outputSize);
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
H A Dnative_crypto.cc9439 jlong address, jint outputSize, jobject shc) {
9477 int result = BIO_read(bio, destPtr, outputSize);
9480 "ssl=%p NativeCrypto_ENGINE_SSL_read_BIO_direct bio=%p destPtr=%p outputSize=%d shc=%p "
9482 ssl, bio, destPtr, outputSize, shc, result);
9603 jsize outputSize = env->GetArrayLength(outputJavaBytes); local
9606 new unsigned char[static_cast<unsigned int>(outputSize)]);
9612 int read = BIO_read(bio, buffer.get(), static_cast<int>(outputSize));
9438 NativeCrypto_ENGINE_SSL_read_BIO_direct(JNIEnv* env, jclass, jlong ssl_address, CONSCRYPT_UNUSED jobject ssl_holder, jlong bioRef, jlong address, jint outputSize, jobject shc) argument
/external/guice/extensions/struts2/lib/
H A Djetty-6.1.0.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mortbay/ org/mortbay/jetty/ org/mortbay/jetty/webapp/ ...
/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/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 2805 milliseconds