Home
last modified time | relevance | path

Searched +defs:output +defs:length (Results 1 – 25 of 1484) sorted by relevance

12345678910>>...60

/aosp_15_r20/external/mbedtls/library/
H A Dcipher_wrap.c160 const unsigned char *input, unsigned char *output) in aes_crypt_ecb_wrap()
166 static int aes_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation, size_t length, in aes_crypt_cbc_wrap()
167 unsigned char *iv, const unsigned char *input, unsigned char *output) in aes_crypt_cbc_wrap()
176 size_t length, size_t *iv_off, unsigned char *iv, in aes_crypt_cfb128_wrap()
177 const unsigned char *input, unsigned char *output) in aes_crypt_cfb128_wrap()
185 static int aes_crypt_ofb_wrap(void *ctx, size_t length, size_t *iv_off, in aes_crypt_ofb_wrap()
186 unsigned char *iv, const unsigned char *input, unsigned char *output) in aes_crypt_ofb_wrap()
194 static int aes_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap()
196 const unsigned char *input, unsigned char *output) in aes_crypt_ctr_wrap()
205 size_t length, in aes_crypt_xts_wrap()
[all …]
H A Dccm.c105 unsigned char *output) in mbedtls_ccm_crypt()
320 unsigned char *output, size_t output_size, in mbedtls_ccm_update()
461 static int ccm_auth_crypt(mbedtls_ccm_context *ctx, int mode, size_t length, in ccm_auth_crypt()
464 const unsigned char *input, unsigned char *output, in ccm_auth_crypt()
497 int mbedtls_ccm_star_encrypt_and_tag(mbedtls_ccm_context *ctx, size_t length, in mbedtls_ccm_star_encrypt_and_tag()
500 const unsigned char *input, unsigned char *output, in mbedtls_ccm_star_encrypt_and_tag()
507 int mbedtls_ccm_encrypt_and_tag(mbedtls_ccm_context *ctx, size_t length, in mbedtls_ccm_encrypt_and_tag()
510 const unsigned char *input, unsigned char *output, in mbedtls_ccm_encrypt_and_tag()
534 static int ccm_auth_decrypt(mbedtls_ccm_context *ctx, int mode, size_t length, in ccm_auth_decrypt()
537 const unsigned char *input, unsigned char *output, in ccm_auth_decrypt()
[all …]
H A Dchachapoly.c159 unsigned char *output) in mbedtls_chachapoly_update()
246 size_t length, in chachapoly_crypt_and_tag()
251 unsigned char *output, in chachapoly_crypt_and_tag()
278 size_t length, in mbedtls_chachapoly_encrypt_and_tag()
283 unsigned char *output, in mbedtls_chachapoly_encrypt_and_tag()
292 size_t length, in mbedtls_chachapoly_auth_decrypt()
298 unsigned char *output) in mbedtls_chachapoly_auth_decrypt()
432 unsigned char output[200]; in mbedtls_chachapoly_self_test() local
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/library/
H A Dcipher_wrap.c164 const unsigned char *input, unsigned char *output) in aes_crypt_ecb_wrap()
170 static int aes_crypt_cbc_wrap(void *ctx, mbedtls_operation_t operation, size_t length, in aes_crypt_cbc_wrap()
171 unsigned char *iv, const unsigned char *input, unsigned char *output) in aes_crypt_cbc_wrap()
180 size_t length, size_t *iv_off, unsigned char *iv, in aes_crypt_cfb128_wrap()
181 const unsigned char *input, unsigned char *output) in aes_crypt_cfb128_wrap()
189 static int aes_crypt_ofb_wrap(void *ctx, size_t length, size_t *iv_off, in aes_crypt_ofb_wrap()
190 unsigned char *iv, const unsigned char *input, unsigned char *output) in aes_crypt_ofb_wrap()
198 static int aes_crypt_ctr_wrap(void *ctx, size_t length, size_t *nc_off, in aes_crypt_ctr_wrap()
200 const unsigned char *input, unsigned char *output) in aes_crypt_ctr_wrap()
209 size_t length, in aes_crypt_xts_wrap()
[all …]
H A Dccm.c126 unsigned char *output) in mbedtls_ccm_crypt()
360 unsigned char *output, size_t output_size, in mbedtls_ccm_update()
512 static int ccm_auth_crypt(mbedtls_ccm_context *ctx, int mode, size_t length, in ccm_auth_crypt()
515 const unsigned char *input, unsigned char *output, in ccm_auth_crypt()
548 int mbedtls_ccm_star_encrypt_and_tag(mbedtls_ccm_context *ctx, size_t length, in mbedtls_ccm_star_encrypt_and_tag()
551 const unsigned char *input, unsigned char *output, in mbedtls_ccm_star_encrypt_and_tag()
558 int mbedtls_ccm_encrypt_and_tag(mbedtls_ccm_context *ctx, size_t length, in mbedtls_ccm_encrypt_and_tag()
561 const unsigned char *input, unsigned char *output, in mbedtls_ccm_encrypt_and_tag()
585 static int ccm_auth_decrypt(mbedtls_ccm_context *ctx, int mode, size_t length, in ccm_auth_decrypt()
588 const unsigned char *input, unsigned char *output, in ccm_auth_decrypt()
[all …]
/aosp_15_r20/external/pffft/
H A Dpffft.hpp360 int length; member in pffft::Fft
366 inline T* alignedAlloc(int length) { in alignedAlloc()
416 void prepareLength(int length) in prepareLength()
427 Scalar* output, in transform_ordered()
435 Scalar* output, in transform()
442 void reorder(const Scalar* input, Scalar* output, pffft_direction_t direction) in reorder()
479 void prepareLength(int length) in prepareLength()
488 Scalar* output, in transform_ordered()
496 Scalar* output, in transform()
503 void reorder(const Scalar* input, Scalar* output, pffft_direction_t direction) in reorder()
[all …]
/aosp_15_r20/external/apache-commons-io/src/main/java/org/apache/commons/io/
H A DIOUtils.java669 public static void closeQuietly(final OutputStream output) { in closeQuietly()
1239 public static long copy(final Reader reader, final Appendable output) throws IOException { in copy()
1258 …public static long copy(final Reader reader, final Appendable output, final CharBuffer buffer) thr… in copy()
1293 public static void copy(final Reader reader, final OutputStream output) in copy()
1321 …public static void copy(final Reader reader, final OutputStream output, final Charset outputCharse… in copy()
1360 …public static void copy(final Reader reader, final OutputStream output, final String outputCharset… in copy()
1518 …public static long copyLarge(final InputStream input, final OutputStream output, final long inputO… in copyLarge()
1519 final long length) throws IOException { in copyLarge()
1547 public static long copyLarge(final InputStream input, final OutputStream output, in copyLarge()
1548 … final long inputOffset, final long length, final byte[] buffer) throws IOException { in copyLarge()
[all …]
/aosp_15_r20/external/cronet/url/
H A Durl_canon_internal.cc37 size_t FindInitialQuerySafeString(const char* source, size_t length) { in FindInitialQuerySafeString()
71 size_t length, in DoAppendStringOfType()
73 CanonOutput* output) { in DoAppendStringOfType()
108 CanonOutput* output) { in DoAppendInvalidNarrowString()
299 size_t length, in AppendStringOfType()
301 CanonOutput* output) { in AppendStringOfType()
306 size_t length, in AppendStringOfType()
308 CanonOutput* output) { in AppendStringOfType()
314 size_t length, in ReadUTFCharLossy()
325 size_t length, in ReadUTFCharLossy()
[all …]
/aosp_15_r20/external/angle/src/tests/compiler_tests/
H A DExpressionLimit_test.cpp49 static void GenerateLongExpression(int length, std::stringstream *ss) in GenerateLongExpression()
57 static std::string GenerateShaderWithLongExpression(int length) in GenerateShaderWithLongExpression()
75 static std::string GenerateShaderWithUnusedLongExpression(int length) in GenerateShaderWithUnusedLongExpression()
97 static void GenerateDeepFunctionStack(int length, std::stringstream *ss) in GenerateDeepFunctionStack()
116 static std::string GenerateShaderWithDeepFunctionStack(int length) in GenerateShaderWithDeepFunctionStack()
127 static std::string GenerateShaderWithUnusedDeepFunctionStack(int length) in GenerateShaderWithUnusedDeepFunctionStack()
246 ShShaderOutput output = SH_ESSL_OUTPUT; in TEST_F() local
270 ShShaderOutput output = SH_ESSL_OUTPUT; in TEST_F() local
297 ShShaderOutput output = SH_ESSL_OUTPUT; in TEST_F() local
321 ShShaderOutput output = SH_ESSL_OUTPUT; in TEST_F() local
[all …]
/aosp_15_r20/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DArrayDecoders.java190 final int length = registers.int1; in decodeString() local
206 final int length = registers.int1; in decodeStringRequireUtf8() local
222 final int length = registers.int1; in decodeBytes() local
263 int length = data[position++]; in mergeMessageField() local
299 final IntArrayList output = (IntArrayList) list; in decodeVarint32List() local
316 final LongArrayList output = (LongArrayList) list; in decodeVarint64List() local
333 final IntArrayList output = (IntArrayList) list; in decodeFixed32List() local
350 final LongArrayList output = (LongArrayList) list; in decodeFixed64List() local
367 final FloatArrayList output = (FloatArrayList) list; in decodeFloatList() local
384 final DoubleArrayList output = (DoubleArrayList) list; in decodeDoubleList() local
[all …]
H A DCodedInputStream.java242 public abstract boolean skipField(final int tag, final CodedOutputStream output) in skipField()
255 public abstract void skipMessage(CodedOutputStream output) throws IOException; in skipMessage()
678 public boolean skipField(final int tag, final CodedOutputStream output) throws IOException { in skipField()
739 public void skipMessage(CodedOutputStream output) throws IOException { in skipMessage()
868 final int length = readRawVarint32(); in readMessage() local
885 int length = readRawVarint32(); in readMessage() local
1251 public byte[] readRawBytes(final int length) throws IOException { in readRawBytes()
1269 public void skipRawBytes(final int length) throws IOException { in skipRawBytes()
1393 public boolean skipField(final int tag, final CodedOutputStream output) throws IOException { in skipField()
1454 public void skipMessage(CodedOutputStream output) throws IOException { in skipMessage()
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/java/core/src/main/java/com/google/protobuf/
H A DArrayDecoders.java190 final int length = registers.int1; in decodeString() local
206 final int length = registers.int1; in decodeStringRequireUtf8() local
222 final int length = registers.int1; in decodeBytes() local
263 int length = data[position++]; in mergeMessageField() local
299 final IntArrayList output = (IntArrayList) list; in decodeVarint32List() local
316 final LongArrayList output = (LongArrayList) list; in decodeVarint64List() local
333 final IntArrayList output = (IntArrayList) list; in decodeFixed32List() local
350 final LongArrayList output = (LongArrayList) list; in decodeFixed64List() local
367 final FloatArrayList output = (FloatArrayList) list; in decodeFloatList() local
384 final DoubleArrayList output = (DoubleArrayList) list; in decodeDoubleList() local
[all …]
H A DCodedInputStream.java242 public abstract boolean skipField(final int tag, final CodedOutputStream output) in skipField()
255 public abstract void skipMessage(CodedOutputStream output) throws IOException; in skipMessage()
678 public boolean skipField(final int tag, final CodedOutputStream output) throws IOException { in skipField()
739 public void skipMessage(CodedOutputStream output) throws IOException { in skipMessage()
868 final int length = readRawVarint32(); in readMessage() local
885 int length = readRawVarint32(); in readMessage() local
1251 public byte[] readRawBytes(final int length) throws IOException { in readRawBytes()
1269 public void skipRawBytes(final int length) throws IOException { in skipRawBytes()
1393 public boolean skipField(final int tag, final CodedOutputStream output) throws IOException { in skipField()
1454 public void skipMessage(CodedOutputStream output) throws IOException { in skipMessage()
[all …]
/aosp_15_r20/external/libvpx/vp9/encoder/
H A Dvp9_resize.c154 uint8_t *output, int outlength) { in interpolate()
240 static void down2_symeven(const uint8_t *const input, int length, in down2_symeven()
241 uint8_t *output) { in down2_symeven()
296 static void down2_symodd(const uint8_t *const input, int length, in down2_symodd()
297 uint8_t *output) { in down2_symodd()
351 static int get_down2_length(int length, int steps) { in get_down2_length()
373 static void resize_multistep(const uint8_t *const input, int length, in resize_multistep()
374 uint8_t *output, int olength, uint8_t *otmp) { in resize_multistep()
430 int in_stride, uint8_t *output, int height2, int width2, in vp9_resize_plane()
462 uint16_t *output, int outlength, int bd) { in highbd_interpolate()
[all …]
/aosp_15_r20/external/webrtc/modules/audio_coding/neteq/
H A Ddsp_helper.cc48 size_t length, in RampSignal()
51 int16_t* output) { in RampSignal()
64 size_t length, in RampSignal()
72 size_t length, in RampSignal()
88 size_t length, in RampSignal()
252 size_t length, in MinDistortion()
275 size_t length, in CrossFade()
278 int16_t* output) { in CrossFade()
291 size_t length, in UnmuteSignal()
294 int16_t* output) { in UnmuteSignal()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/kernels/
H A Dactivations.cc123 TfLiteTensor* output, in PopulateLookupTable()
144 TfLiteTensor* output) { in EvalUsingLookupTable()
167 uint8x16_t output = optimized_ops::aarch64_lookup_vector(table, input); in EvalUsingLookupTable() local
179 TfLiteTensor* output, const ReluOpData* data) { in QuantizedReluX()
202 void* Init(TfLiteContext* context, const char* buffer, size_t length) { in Init()
209 void* SoftmaxInit(TfLiteContext* context, const char* buffer, size_t length) { in SoftmaxInit()
218 size_t length) { in LogSoftmaxInit()
222 void* PreluInit(TfLiteContext* context, const char* buffer, size_t length) { in PreluInit()
238 void* HardSwishInit(TfLiteContext* context, const char* buffer, size_t length) { in HardSwishInit()
247 TfLiteTensor* output; in GenericPrepare() local
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/i18n/
H A Dnumber_modifiers.cpp81 int32_t ConstantAffixModifier::apply(FormattedStringBuilder &output, int leftIndex, int rightIndex, in apply()
84 int length = output.insert(rightIndex, fSuffix, fField, status); in apply() local
166 int32_t SimpleModifier::apply(FormattedStringBuilder &output, int leftIndex, int rightIndex, in apply()
250 int32_t length = 0; // chars added to result in formatTwoArgPattern() local
296 int32_t ConstantMultiFieldModifier::apply(FormattedStringBuilder &output, int leftIndex, int rightI… in apply()
298 int32_t length = output.insert(leftIndex, fPrefix, status); in apply() local
386 int32_t CurrencySpacingEnabledModifier::apply(FormattedStringBuilder &output, int leftIndex, int ri… in apply()
389 int length = 0; in apply() local
415 CurrencySpacingEnabledModifier::applyCurrencySpacing(FormattedStringBuilder &output, int32_t prefix… in applyCurrencySpacing()
420 int length = 0; in applyCurrencySpacing() local
[all …]
/aosp_15_r20/external/icu/icu4c/source/i18n/
H A Dnumber_modifiers.cpp116 int32_t ConstantAffixModifier::apply(FormattedStringBuilder &output, int leftIndex, int rightIndex, in apply()
119 int length = output.insert(rightIndex, fSuffix, fField, status); in apply() local
201 int32_t SimpleModifier::apply(FormattedStringBuilder &output, int leftIndex, int rightIndex, in apply()
282 int32_t length = 0; // chars added to result in formatTwoArgPattern() local
328 int32_t ConstantMultiFieldModifier::apply(FormattedStringBuilder &output, int leftIndex, int rightI… in apply()
330 int32_t length = output.insert(leftIndex, fPrefix, status); in apply() local
415 int32_t CurrencySpacingEnabledModifier::apply(FormattedStringBuilder &output, int leftIndex, int ri… in apply()
418 int length = 0; in apply() local
444 CurrencySpacingEnabledModifier::applyCurrencySpacing(FormattedStringBuilder &output, int32_t prefix… in applyCurrencySpacing()
449 int length = 0; in applyCurrencySpacing() local
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/src/google/protobuf/
H A Dwire_format_lite.cc140 uint32_t length; in SkipField() local
172 io::CodedOutputStream* output) { in SkipField()
191 uint32_t length; in SkipField() local
250 io::CodedOutputStream* output) { in SkipMessage()
300 uint32_t length; in ReadPackedEnumPreserveUnknowns() local
356 static void WriteArray(const CType* a, int n, io::CodedOutputStream* output) { in WriteArray()
375 io::CodedOutputStream* output) { in WriteFloatArray()
380 io::CodedOutputStream* output) { in WriteDoubleArray()
385 io::CodedOutputStream* output) { in WriteFixed32Array()
390 io::CodedOutputStream* output) { in WriteFixed64Array()
[all …]
/aosp_15_r20/external/protobuf/src/google/protobuf/
H A Dwire_format_lite.cc140 uint32_t length; in SkipField() local
172 io::CodedOutputStream* output) { in SkipField()
191 uint32_t length; in SkipField() local
250 io::CodedOutputStream* output) { in SkipMessage()
300 uint32_t length; in ReadPackedEnumPreserveUnknowns() local
356 static void WriteArray(const CType* a, int n, io::CodedOutputStream* output) { in WriteArray()
375 io::CodedOutputStream* output) { in WriteFloatArray()
380 io::CodedOutputStream* output) { in WriteDoubleArray()
385 io::CodedOutputStream* output) { in WriteFixed32Array()
390 io::CodedOutputStream* output) { in WriteFixed64Array()
[all …]
/aosp_15_r20/external/libaom/av1/common/
H A Dresize.c234 uint8_t *output, int out_length, in interpolate_core()
316 uint8_t *output, int out_length) { in interpolate()
339 void down2_symeven(const uint8_t *const input, int length, uint8_t *output, in down2_symeven()
394 static void down2_symodd(const uint8_t *const input, int length, in down2_symodd()
395 uint8_t *output) { in down2_symodd()
449 static int get_down2_length(int length, int steps) { in get_down2_length()
470 static void resize_multistep(const uint8_t *const input, int length, in resize_multistep()
471 uint8_t *output, int olength, uint8_t *otmp) { in resize_multistep()
523 bool av1_resize_vert_dir_c(uint8_t *intbuf, uint8_t *output, int out_stride, in av1_resize_vert_dir_c()
554 int in_stride, uint8_t *output, int height2, in av1_resize_plane_to_half()
[all …]
/aosp_15_r20/external/icu/icu4j/main/core/src/main/java/com/ibm/icu/number/
H A DNumberFormatterImpl.java67 int length = writeNumber(result, inValue, outString, 0); in formatStatic() local
82 FormattedStringBuilder output) { in getPrefixSuffixStatic()
98 int length = writeNumber(result, inValue, outString, 0); in format() local
130 public int getPrefixSuffix(byte signum, StandardPlural plural, FormattedStringBuilder output) { in getPrefixSuffix()
134 …nt getPrefixSuffixImpl(MicroPropsGenerator generator, byte signum, FormattedStringBuilder output) { in getPrefixSuffixImpl()
495 int length = micros.modInner.apply(string, start, end); in writeAffixes() local
514 int length = 0; in writeNumber() local
573 int length = 0; in writeIntegerDigits() local
604 int length = 0; in writeFractionDigits() local
/aosp_15_r20/external/icu/android_icu4j/src/main/java/android/icu/number/
H A DNumberFormatterImpl.java68 int length = writeNumber(result, inValue, outString, 0); in formatStatic() local
83 FormattedStringBuilder output) { in getPrefixSuffixStatic()
99 int length = writeNumber(result, inValue, outString, 0); in format() local
131 public int getPrefixSuffix(byte signum, StandardPlural plural, FormattedStringBuilder output) { in getPrefixSuffix()
135 …nt getPrefixSuffixImpl(MicroPropsGenerator generator, byte signum, FormattedStringBuilder output) { in getPrefixSuffixImpl()
496 int length = micros.modInner.apply(string, start, end); in writeAffixes() local
515 int length = 0; in writeNumber() local
574 int length = 0; in writeIntegerDigits() local
605 int length = 0; in writeFractionDigits() local
/aosp_15_r20/external/cronet/net/base/
H A Daddress_tracker_linux_test_util.cc32 void NetlinkMessage::AddPayload(const void* data, size_t length) { in AddPayload()
41 size_t length) { in AddAttribute()
56 void NetlinkMessage::Append(const void* data, size_t length) { in Append()
76 NetlinkBuffer* output) { in MakeAddrMessageWithCacheInfo()
102 NetlinkBuffer* output) { in MakeAddrMessage()
110 NetlinkBuffer* output, in MakeLinkMessage()
129 NetlinkBuffer* output, in MakeWirelessLinkMessage()
/aosp_15_r20/external/oj-libjdwp/src/share/npt/
H A Dutf.c54 utf8ToUtf16(struct UtfInst *ui, jbyte *utf8, int len, unsigned short *output, int outputMaxLen) in utf8ToUtf16()
92 utf16ToUtf8m(struct UtfInst *ui, unsigned short *utf16, int len, jbyte *output, int outputMaxLen) in utf16ToUtf8m()
132 utf16ToUtf8s(struct UtfInst *ui, unsigned short *utf16, int len, jbyte *output, int outputMaxLen) in utf16ToUtf8s()
145 utf8sToUtf8mLength(struct UtfInst *ui, jbyte *string, int length) in utf8sToUtf8mLength()
203 utf8sToUtf8m(struct UtfInst *ui, jbyte *string, int length, jbyte *newString, int newLength) in utf8sToUtf8m()
267 utf8mToUtf8sLength(struct UtfInst *ui, jbyte *string, int length) in utf8mToUtf8sLength()
334 utf8mToUtf8s(struct UtfInst *ui, jbyte *string, int length, jbyte *newString, int newLength) in utf8mToUtf8s()
406 bytesToPrintable(struct UtfInst *ui, char *bytes, int len, char *output, int outputMaxLen) in bytesToPrintable()

12345678910>>...60