HomeSort by relevance Sort by last modified time
    Searched refs:length (Results 301 - 325 of 26992) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
lsf_interpolate_to_poly_enc.h 35 int16_t length /* (i) length of coefficient vectors */
  /external/webrtc/webrtc/modules/audio_processing/transient/
wpd_node.cc 23 WPDNode::WPDNode(size_t length,
26 : // The data buffer has parent data length to be able to contain and filter
28 data_(new float[2 * length + 1]),
29 length_(length),
32 2 * length + 1)) {
33 assert(length > 0 && coefficients && coefficients_length > 0);
34 memset(data_.get(), 0.f, (2 * length + 1) * sizeof(data_[0]));
63 int WPDNode::set_data(const float* new_data, size_t length) {
64 if (!new_data || length != length_) {
67 memcpy(data_.get(), new_data, length * sizeof(data_[0]))
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ScrollBarUtils.java 24 int length = Math.round((float) size * extent / range); local
25 if (length < minLength) {
26 length = minLength;
28 return length;
  /frameworks/base/graphics/java/android/graphics/
DiscretePathEffect.java 29 private static native long nativeCreate(float length, float deviation);
  /frameworks/base/services/usb/java/com/android/server/usb/descriptors/
UsbASFormat.java 43 public UsbASFormat(int length, byte type, byte subtype, byte formatType, int mSubclass) {
44 super(length, type, subtype, mSubclass);
69 ByteStream stream, int length, byte type,
78 return new Usb20ASFormatI(length, type, subtype, formatType, subclass);
80 return new Usb10ASFormatI(length, type, subtype, formatType, subclass);
85 return new Usb20ASFormatII(length, type, subtype, formatType, subclass);
87 return new Usb10ASFormatII(length, type, subtype, formatType, subclass);
92 return new Usb20ASFormatIII(length, type, subtype, formatType, subclass);
97 return new UsbASFormat(length, type, subtype, formatType, subclass);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ComprehensionTlv.java 47 * @param length Length of the value
51 protected ComprehensionTlv(int tag, boolean cr, int length, byte[] data,
55 mLength = length;
91 int endIndex = data.length;
117 int endIndex = data.length;
150 /* length */
151 int length; local
154 length = temp;
156 length = data[curIndex++] & 0xff
    [all...]
TextAttribute.java 27 public int length; field in class:TextAttribute
36 public TextAttribute(int start, int length, TextAlignment align,
40 this.length = length;
  /hardware/interfaces/bluetooth/1.0/default/
hci_protocol.cc 31 size_t HciProtocol::WriteSafely(int fd, const uint8_t* data, size_t length) {
33 while (length > 0) {
35 TEMP_FAILURE_RETRY(write(fd, data + transmitted_length, length));
49 length -= ret;
  /hardware/interfaces/gnss/1.0/default/
GnssDebug.cpp 47 size_t length = mGnssDebugIface->get_internal_state(buffer, kMaxDebugStrLen); local
48 length = std::max(length, kMaxDebugStrLen);
49 buffer[length] = '\0';
  /hardware/nxp/secure_element/libese-spi/p73/utils/
ringbuffer.h 45 // Attempts to insert up to |length| bytes of data at |p| into the buffer
46 // Return actual number of bytes added. Can be less than |length| if buffer
48 size_t ringbuffer_insert(ringbuffer_t* rb, const uint8_t* p, size_t length);
50 // Peek |length| number of bytes from the ringbuffer, starting at |offset|,
52 // than |length| if there is less than |length| data available. |offset| must
55 size_t length);
58 size_t ringbuffer_pop(ringbuffer_t* rb, uint8_t* p, size_t length);
60 // Deletes |length| bytes from the ringbuffer starting from the head
62 size_t ringbuffer_delete(ringbuffer_t* rb, size_t length);
    [all...]
  /hardware/qcom/display/msm8909w_3100/sdm/include/core/
dump_interface.h 52 @param[in] length Length of the string buffer. Length shall be offset adjusted if any.
59 static DisplayError GetDump(char *buffer, uint32_t length);
  /hardware/qcom/display/msm8996/sdm/include/core/
dump_interface.h 52 @param[in] length Length of the string buffer. Length shall be offset adjusted if any.
59 static DisplayError GetDump(char *buffer, uint32_t length);
  /hardware/qcom/display/msm8998/sdm/include/core/
dump_interface.h 52 @param[in] length Length of the string buffer. Length shall be offset adjusted if any.
59 static DisplayError GetDump(char *buffer, uint32_t length);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
StreamUtils.java 32 int length = input.length - (input.length % 4); local
33 if (output.length * 4 < length) {
37 for (int i = 0, j = 0; i < output.length; i++, j += 4) {
42 for (int i = 0, j = 0; i < output.length; i++, j += 4) {
47 return input.length % 4 != 0;
51 int[] output = new int[input.length / 4];
  /prebuilts/go/darwin-x86/src/runtime/cgo/
gcc_mmap.c 15 x_cgo_mmap(void *addr, uintptr_t length, int32_t prot, int32_t flags, int32_t fd, uint32_t offset) {
19 p = mmap(addr, length, prot, flags, fd, offset);
29 x_cgo_munmap(void *addr, uintptr_t length) {
33 r = munmap(addr, length);
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7083.go 18 println("bad length", i, m[i], len(*m[i]))
19 panic("bad length")
  /prebuilts/go/linux-x86/src/runtime/cgo/
gcc_mmap.c 15 x_cgo_mmap(void *addr, uintptr_t length, int32_t prot, int32_t flags, int32_t fd, uint32_t offset) {
19 p = mmap(addr, length, prot, flags, fd, offset);
29 x_cgo_munmap(void *addr, uintptr_t length) {
33 r = munmap(addr, length);
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7083.go 18 println("bad length", i, m[i], len(*m[i]))
19 panic("bad length")
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.submatch/re.submatch.members/
length.pass.cpp 14 // difference_type length() const;
26 assert(sm.length() == 0);
31 assert(sm.length() == 3);
37 assert(sm.length() == 0);
42 assert(sm.length() == 3);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string_view.literals/
literal1.pass.cpp 24 assert(foo.length() == 0);
literal2.pass.cpp 24 assert(foo.length() == 0);
  /system/bt/embdrv/sbc/encoder/include/
sbc_if.h 37 increasing by length until track is finished.
40 length - any
45 int SBC_write(unsigned char* pcm_in, int length, unsigned char* sbc_out);
  /system/bt/osi/include/
ringbuffer.h 45 // Attempts to insert up to |length| bytes of data at |p| into the buffer
46 // Return actual number of bytes added. Can be less than |length| if buffer
48 size_t ringbuffer_insert(ringbuffer_t* rb, const uint8_t* p, size_t length);
50 // Peek |length| number of bytes from the ringbuffer, starting at |offset|,
52 // than |length| if there is less than |length| data available. |offset| must
55 size_t length);
58 size_t ringbuffer_pop(ringbuffer_t* rb, uint8_t* p, size_t length);
60 // Deletes |length| bytes from the ringbuffer starting from the head
62 size_t ringbuffer_delete(ringbuffer_t* rb, size_t length);
    [all...]
  /system/chre/platform/android/include/chre/platform/android/
host_link.h 35 * @param length the size of the data buffer.
38 bool handleMessageFromHost(void *message, size_t length);
  /system/chre/platform/android/
init.cc 33 void onMessageReceivedFromClient(uint16_t clientId, void *data, size_t length) {
34 if (!HostProtocolHost::mutateHostClientId(data, length, clientId)) {
37 LOGD("Delivering message from host (size %zu)", length);
38 if (!chre::handleMessageFromHost(data, length)) {

Completed in 660 milliseconds

<<11121314151617181920>>