HomeSort by relevance Sort by last modified time
    Searched refs:len (Results 276 - 300 of 25604) sorted by null

<<11121314151617181920>>

  /external/webrtc/talk/media/base/
rtputils.h 56 bool GetRtpPayloadType(const void* data, size_t len, int* value);
57 bool GetRtpSeqNum(const void* data, size_t len, int* value);
58 bool GetRtpTimestamp(const void* data, size_t len, uint32_t* value);
59 bool GetRtpSsrc(const void* data, size_t len, uint32_t* value);
60 bool GetRtpHeaderLen(const void* data, size_t len, size_t* value);
61 bool GetRtcpType(const void* data, size_t len, int* value);
62 bool GetRtcpSsrc(const void* data, size_t len, uint32_t* value);
63 bool GetRtpHeader(const void* data, size_t len, RtpHeader* header);
65 bool SetRtpSsrc(void* data, size_t len, uint32_t value);
67 bool SetRtpHeader(void* data, size_t len, const RtpHeader& header)
    [all...]
  /frameworks/av/media/libstagefright/foundation/
AStringUtils.cpp 23 int AStringUtils::Compare(const char *a, const char *b, size_t len, bool ignoreCase) {
24 // this method relies on a trailing '\0' if a or b are shorter than len
25 return ignoreCase ? strncasecmp(a, b, len) : strncmp(a, b, len);
38 if (strLen < globIx || Compare(str, glob, globIx /* len */, ignoreCase)) {
50 size_t len = globIx - start; local
55 if (ix + len > strLen) {
58 const char *tail = str + strLen - len;
59 return !Compare(tail, pattern, len, ignoreCase);
62 while (ix + len <= strLen && Compare(str + ix, pattern, len, ignoreCase))
    [all...]
  /frameworks/rs/
rsCppUtils.cpp 38 const char * rsuCopyString(const char *name, size_t len) {
39 char *n = new char[len+1];
40 memcpy(n, name, len);
41 n[len] = 0;
107 int len; local
108 len = __system_property_get(key, value);
109 if (len > 0) {
110 return len;
114 len = strlen(default_value);
115 memcpy(value, default_value, len + 1)
    [all...]
  /prebuilts/go/darwin-x86/src/strings/
compare_test.go 58 for len := 0; len < 128; len++ {
60 for i := 0; i < len; i++ {
65 for i := len; i <= n; i++ {
70 cmp := Compare(string(a[:len]), string(b[:len]))
72 t.Errorf(`CompareIdentical(%d) = %d`, len, cmp)
74 if len > 0 {
75 cmp = Compare(string(a[:len-1]), string(b[:len])
    [all...]
  /prebuilts/go/linux-x86/src/strings/
compare_test.go 58 for len := 0; len < 128; len++ {
60 for i := 0; i < len; i++ {
65 for i := len; i <= n; i++ {
70 cmp := Compare(string(a[:len]), string(b[:len]))
72 t.Errorf(`CompareIdentical(%d) = %d`, len, cmp)
74 if len > 0 {
75 cmp = Compare(string(a[:len-1]), string(b[:len])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
inftrees.c 40 unsigned len; /* a code's length in bits */ local
107 for (len = 0; len <= MAXBITS; len++)
108 count[len] = 0;
132 for (len = 1; len <= MAXBITS; len++) {
134 left -= count[len];
142 for (len = 1; len < MAXBITS; len++)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
BufFileInput.cpp 39 len( 0 )
50 if( len > 0 )
58 len--;
69 len++;
81 while( len < l )
85 buf[ (start+len) % size ] = c;
87 len++;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
BufFileInput.cpp 39 len( 0 )
50 if( len > 0 )
58 len--;
69 len++;
81 while( len < l )
85 buf[ (start+len) % size ] = c;
87 len++;
  /external/elfutils/libelf/
gnuhash_xlate.h 37 elf_cvt_gnuhash (void *dest, const void *src, size_t len, int encode)
47 if (len < 4)
50 len -= 4;
60 if (len < 8)
63 len -= 8;
69 while (len >= 4)
72 len -= 4;
  /external/google-breakpad/src/client/linux/minidump_writer/
line_reader.h 58 // len: (output) the length of the line (not inc the NUL byte)
64 bool GetNextLine(const char **line, unsigned *len) {
72 *len = i;
91 *len = buf_used_;
113 void PopLine(unsigned len) {
114 // len doesn't include the NUL byte at the end.
116 assert(buf_used_ >= len + 1);
117 buf_used_ -= len + 1;
118 my_memmove(buf_, buf_ + len + 1, buf_used_);
  /external/skia/tools/timer/
Timer.cpp 22 int HumanizeMs(char* s, int len, double ms) {
23 if (ms > 60e+3) return snprintf(s, len, "%.3gm", ms / 60e+3);
24 if (ms > 1e+3) return snprintf(s, len, "%.3gs", ms / 1e+3);
25 if (ms < 1e-3) return snprintf(s, len, "%.3gns", ms*1e+6);
27 if (ms < 1) return snprintf(s, len, "%.3gus", ms*1e+3);
29 if (ms < 1) return snprintf(s, len, "%.3gµs", ms*1e+3);
31 return snprintf(s, len, "%.3gms", ms);
  /external/skqp/tools/timer/
Timer.cpp 22 int HumanizeMs(char* s, int len, double ms) {
23 if (ms > 60e+3) return snprintf(s, len, "%.3gm", ms / 60e+3);
24 if (ms > 1e+3) return snprintf(s, len, "%.3gs", ms / 1e+3);
25 if (ms < 1e-3) return snprintf(s, len, "%.3gns", ms*1e+6);
27 if (ms < 1) return snprintf(s, len, "%.3gus", ms*1e+3);
29 if (ms < 1) return snprintf(s, len, "%.3gµs", ms*1e+3);
31 return snprintf(s, len, "%.3gms", ms);
  /external/syslinux/gpxe/src/core/
asprintf.c 15 * @ret len Length of formatted string
18 size_t len; local
23 len = ( vsnprintf ( NULL, 0, fmt, args_tmp ) + 1 );
27 *strp = malloc ( len );
30 return vsnprintf ( *strp, len, fmt, args );
39 * @ret len Length of formatted string
43 int len; local
46 len = vasprintf ( strp, fmt, args );
48 return len;
  /external/toybox/scripts/
mktags.c 15 ssize_t len; local
17 len = getline(&line, &len, stdin);
18 if (len<0) break;
19 while (len && isspace(line[len-1])) line[--len]=0;
  /external/webrtc/webrtc/common_audio/signal_processing/
resample_by_2_internal.h 26 void WebRtcSpl_DownBy2IntToShort(int32_t *in, int32_t len, int16_t *out,
29 void WebRtcSpl_DownBy2ShortToInt(const int16_t *in, int32_t len,
32 void WebRtcSpl_UpBy2ShortToInt(const int16_t *in, int32_t len,
35 void WebRtcSpl_UpBy2IntToInt(const int32_t *in, int32_t len, int32_t *out,
38 void WebRtcSpl_UpBy2IntToShort(const int32_t *in, int32_t len,
41 void WebRtcSpl_LPBy2ShortToInt(const int16_t* in, int32_t len,
44 void WebRtcSpl_LPBy2IntToInt(const int32_t* in, int32_t len, int32_t* out,
  /external/wpa_supplicant_8/src/tls/
asn1.c 16 .len = 6
21 .len = 9
25 int asn1_get_next(const u8 *buf, size_t len, struct asn1_hdr *hdr)
32 end = buf + len;
90 int asn1_parse_oid(const u8 *buf, size_t len, struct asn1_oid *oid)
99 end = buf + len;
111 if (oid->len >= ASN1_MAX_OID_LEN) {
115 if (oid->len == 0) {
125 oid->len = 2;
127 oid->oid[oid->len++] = val
    [all...]
  /external/zlib/src/contrib/infback9/
inftree9.c 40 unsigned len; /* a code's length in bits */ local
109 for (len = 0; len <= MAXBITS; len++)
110 count[len] = 0;
126 for (len = 1; len <= MAXBITS; len++) {
128 left -= count[len];
136 for (len = 1; len < MAXBITS; len++
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
stream.c 40 int len; local
41 len = MIN(Frame_Maxsize - stream->frame_storelen, stream->set_len);
42 pMemOP->Copy(VO_INDEX_ENC_AMRWB, stream->frame_ptr_bk + stream->frame_storelen , stream->set_ptr, len);
43 stream->set_len -= len;
44 stream->set_ptr += len;
45 stream->framebuffer_len = stream->frame_storelen + len;
47 stream->used_len += len;
  /frameworks/wilhelm/tools/mphtogen/
mphtogen.c 31 unsigned len = 0; local
33 if (len > 0) {
35 ++len;
37 if (len > 78) {
39 len = 0;
42 len += 3;
44 if (len > 0) {
  /libcore/ojluni/src/main/java/javax/crypto/spec/
GCMParameterSpec.java 100 * @param len the number of IV bytes
103 * {@code src} is null, {@code len} or {@code offset} is negative,
104 * or the sum of {@code offset} and {@code len} is greater than the
107 public GCMParameterSpec(int tLen, byte[] src, int offset, int len) {
108 init(tLen, src, offset, len);
114 private void init(int tLen, byte[] src, int offset, int len) {
122 if ((src == null) ||(len < 0) || (offset < 0)
123 || ((len + offset) > src.length)) {
127 iv = new byte[len];
128 System.arraycopy(src, offset, iv, 0, len);
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ASimpleInputStream.java 20 public int len; field in class:Support_ASimpleInputStream
37 len = buf.length;
42 len = input.length;
43 buf = new byte[len];
44 System.arraycopy(input, 0, buf, 0, len);
59 return len - pos;
67 if (pos < len) {
  /prebuilts/go/darwin-x86/src/runtime/
noasm.go 15 l := len(s1)
16 if len(s2) < l {
17 l = len(s2)
28 if len(s1) < len(s2) {
31 if len(s1) > len(s2) {
39 l := len(s1)
40 if len(s2) < l {
41 l = len(s2
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
noasm.go 15 l := len(s1)
16 if len(s2) < l {
17 l = len(s2)
28 if len(s1) < len(s2) {
31 if len(s1) > len(s2) {
39 l := len(s1)
40 if len(s2) < l {
41 l = len(s2
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
inftree9.c 40 unsigned len; /* a code's length in bits */ local
109 for (len = 0; len <= MAXBITS; len++)
110 count[len] = 0;
126 for (len = 1; len <= MAXBITS; len++) {
128 left -= count[len];
136 for (len = 1; len < MAXBITS; len++
    [all...]
  /external/libdrm/tests/amdgpu/
vce_tests.c 237 int len, r; local
247 len = 0;
249 len += sizeof(vce_session) / 4;
250 memcpy((ib_cpu + len), vce_taskinfo, sizeof(vce_taskinfo));
251 len += sizeof(vce_taskinfo) / 4;
252 memcpy((ib_cpu + len), vce_create, sizeof(vce_create));
253 len += sizeof(vce_create) / 4;
254 memcpy((ib_cpu + len), vce_feedback, sizeof(vce_feedback));
255 ib_cpu[len + 2] = enc.fb[0].addr >> 32;
256 ib_cpu[len + 3] = enc.fb[0].addr
267 int len = 0, r; local
294 int len = 0, r; local
335 int len, r; local
479 int len, r; local
    [all...]

Completed in 2129 milliseconds

<<11121314151617181920>>