HomeSort by relevance Sort by last modified time
    Searched refs:len (Results 451 - 475 of 16257) sorted by null

<<11121314151617181920>>

  /external/compiler-rt/test/asan/TestCases/
alloca_overflow_right.cc 7 __attribute__((noinline)) void foo(int index, int len) {
8 volatile char str[len] __attribute__((aligned(32)));
alloca_safe_access.cc 7 __attribute__((noinline)) void foo(int index, int len) {
8 volatile char str[len] __attribute__((aligned(32)));
alloca_underflow_left.cc 7 __attribute__((noinline)) void foo(int index, int len) {
8 volatile char str[len] __attribute__((aligned(32)));
suppressions-library.cc 33 size_t len = strlen(a); // BOOM local
34 fprintf(stderr, "strlen ignored, %zu\n", len);
  /external/conscrypt/common/src/jni/main/include/conscrypt/
bio_input_stream.h 32 int read(char *buf, int len) {
33 return read_internal(buf, len, jniutil::inputStream_readMethod);
36 int gets(char *buf, int len) {
37 if (len > PEM_LINE_LENGTH) {
38 len = PEM_LINE_LENGTH;
41 int read = read_internal(buf, len - 1, jniutil::openSslInputStream_readLineMethod);
54 int read_internal(char *buf, int len, jmethodID method) {
66 ScopedLocalRef<jbyteArray> javaBytes(env, env->NewByteArray(len));
  /external/curl/lib/
curl_des.c 43 * len [out] - The length of the data.
45 void Curl_des_set_odd_parity(unsigned char *bytes, size_t len)
49 for(i = 0; i < len; i++) {
  /external/dtc/tests/
get_path.c 36 int len; local
44 len = fdt_get_path(fdt, offset, buf, buflen);
48 if (len != -FDT_ERR_NOSPACE)
50 "insufficient buffer space", buflen, len);
52 if (len < 0)
54 fdt_strerror(len));
55 if (len != 0)
57 "instead of 0", buflen, len);
  /external/e2fsprogs/contrib/android/
block_range.c 43 int len; local
48 len = asprintf(&buf, "%llu%s", range->start, sep);
50 len = asprintf(&buf, "%llu-%llu%s", range->start,
52 if (fwrite(buf, 1, len, f) != (size_t)len) {
60 len = strlen(sep);
61 if (fseek(f, -len, SEEK_CUR) == -len)
  /external/elfutils/libebl/
eblreloctypename.c 39 ebl_reloc_type_name (Ebl *ebl, int reloc, char *buf, size_t len)
43 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
eblsectionname.c 39 ebl_section_name (Ebl *ebl, int section, int xsection, char *buf, size_t len,
43 buf, len) : NULL;
66 snprintf (buf, len, "%d", idx);
74 snprintf (buf, len, "%s: %d", "XINDEX", xsection);
76 snprintf (buf, len, "LOOS+%x", section - SHN_LOOS);
79 snprintf (buf, len, "LOPROC+%x", section - SHN_LOPROC);
81 snprintf (buf, len, "LORESERVE+%x", section - SHN_LORESERVE);
83 snprintf (buf, len, "%s: %d", gettext ("<unknown>"), section);
  /external/epid-sdk/ext/ipp/sources/ippcp/
pcpsha224messagedigest.c 67 // ippStsLengthErr len <0
72 // len input message length
77 IPPFUN(IppStatus, ippsSHA224MessageDigest,(const Ipp8u* pMsg, int len, Ipp8u* pMD))
84 IppStatus sts = cpSHA256MessageDigest(hash, pMsg, len, sha224_iv);
pcpsha256messagedigest.c 67 // ippStsLengthErr len <0
72 // len input message length
76 IPPFUN(IppStatus, ippsSHA256MessageDigest,(const Ipp8u* pMsg, int len, Ipp8u* pMD))
83 IppStatus sts = cpSHA256MessageDigest(hash, pMsg, len, sha256_iv);
pcpsha384messagedigest.c 67 // ippStsLengthErr len <0
72 // len input message length
77 IPPFUN(IppStatus, ippsSHA384MessageDigest,(const Ipp8u* pMsg, int len, Ipp8u* pMD))
84 IppStatus sts = cpSHA512MessageDigest(hash, pMsg, len, sha512_384_iv);
pcpsha512messagedigest.c 67 // ippStsLengthErr len <0
72 // len input message length
76 IPPFUN(IppStatus, ippsSHA512MessageDigest,(const Ipp8u* pMsg, int len, Ipp8u* pMD))
83 IppStatus sts = cpSHA512MessageDigest(hash, pMsg, len, sha512_iv);
  /external/fec/
dotprod_mmx.c 11 int len; /* Number of coefficients */ member in struct:dotprod
22 void *initdp_mmx(signed short coeffs[],int len){
27 if(len == 0)
31 dp->len = len;
35 dp->coeffs[i] = (signed short *)calloc(1+(len+i-1)/4,
37 for(j=0;j<len;j++)
79 return dotprod_mmx_assist(ar,dp->coeffs[al],(dp->len+al-1)/4+1);
dotprod_sse2.c 12 int len; /* Number of coefficients */ member in struct:dotprod
24 void *initdp_sse2(signed short coeffs[],int len){
28 if(len == 0)
32 dp->len = len;
38 blksize = (1+(len+i-1)/8) * 8*sizeof(signed short);
41 for(j=0;j<len;j++)
71 return dotprod_sse2_assist(ar,dp->coeffs[al],(dp->len+al-1)/8+1);
peakval_port.c 6 int peakval_port(signed short *b,int len){
10 for(i=0;i<len;i++){
  /external/kernel-headers/original/uapi/scsi/
scsi_netlink_fc.h 45 #define FC_NL_MSGALIGN(len) (((len) + 7) & ~7)
  /external/libnetfilter_conntrack/include/internal/
bitops.h 28 set_bitmask_u32(uint32_t *buf1, const uint32_t *buf2, int len)
32 for (i=0; i<len; i++)
37 unset_bitmask_u32(uint32_t *buf1, const uint32_t *buf2, int len)
41 for (i=0; i<len; i++)
51 test_bitmask_u32(const uint32_t *buf1, const uint32_t *buf2, int len)
55 for (i=0; i<len; i++) {
64 test_bitmask_u32_or(const uint32_t *buf1, const uint32_t *buf2, int len)
68 for (i=0; i<len; i++) {
  /external/libopus/silk/arm/
biquad_alt_arm.h 40 const opus_int32 len /* I signal length (must be even) */
45 # define silk_biquad_alt_stride2(in, B_Q28, A_Q28, S, out, len, arch) ((void)(arch), PRESUME_NEON(silk_biquad_alt_stride2)(in, B_Q28, A_Q28, S, out, len))
58 const opus_int32 len /* I signal length (must be even) */
61 # define silk_biquad_alt_stride2(in, B_Q28, A_Q28, S, out, len, arch) ((*SILK_BIQUAD_ALT_STRIDE2_IMPL[(arch)&OPUS_ARCHMASK])(in, B_Q28, A_Q28, S, out, len))
64 # define silk_biquad_alt_stride2(in, B_Q28, A_Q28, S, out, len, arch) ((void)(arch), silk_biquad_alt_stride2_neon(in, B_Q28, A_Q28, S, out, len))
  /external/libopus/silk/
inner_prod_aligned.c 38 const opus_int len /* I vector lengths */
43 for( i = 0; i < len; i++ ) {
  /external/libopus/src/
opus.c 153 static int parse_size(const unsigned char *data, opus_int32 len, opus_int16 *size)
155 if (len<1)
163 } else if (len<2)
194 int opus_packet_parse_impl(const unsigned char *data, opus_int32 len,
208 if (size==NULL || len<0)
210 if (len==0)
217 len--;
218 last_size = len;
231 if (len&0x1)
233 last_size = len/2
    [all...]
  /external/libxkbcommon/xkbcommon/src/
atom.h 40 atom_lookup(struct atom_table *table, const char *string, size_t len);
43 atom_intern(struct atom_table *table, const char *string, size_t len,
  /external/libxml2/
enc.h 22 xmlBufferPtr in, int len);
23 int xmlCharEncFirstLineInput(xmlParserInputBufferPtr input, int len);
  /external/ltp/include/lapi/
splice.h 29 loff_t *off_out, size_t len, unsigned int flags)
32 fd_out, off_out, len, flags);

Completed in 679 milliseconds

<<11121314151617181920>>