HomeSort by relevance Sort by last modified time
    Searched refs:size_bytes (Results 1 - 25 of 30) sorted by null

1 2

  /external/linux-kselftest/tools/testing/selftests/x86/
mpx-mm.h 7 extern long nr_incore(void *ptr, unsigned long size_bytes);
mpx-dig.c 41 long nr_incore(void *ptr, unsigned long size_bytes)
45 long vec_len = size_bytes / PAGE_SIZE;
52 incore_ret = mincore(ptr, size_bytes, vec);
  /hardware/qcom/msm8994/kernel-headers/linux/
msm_audio_amrwbplus.h 25 unsigned int size_bytes; member in struct:msm_audio_amrwbplus_config_v2
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm_audio_amrwbplus.h 10 unsigned int size_bytes; member in struct:msm_audio_amrwbplus_config_v2
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_audio_amrwbplus.h 25 unsigned int size_bytes; member in struct:msm_audio_amrwbplus_config_v2
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm_audio_amrwbplus.h 10 unsigned int size_bytes; member in struct:msm_audio_amrwbplus_config_v2
  /hardware/qcom/msm8x84/kernel-headers/linux/
msm_audio_amrwbplus.h 25 unsigned int size_bytes; member in struct:msm_audio_amrwbplus_config_v2
  /hardware/qcom/msm8x84/original-kernel-headers/linux/
msm_audio_amrwbplus.h 10 unsigned int size_bytes; member in struct:msm_audio_amrwbplus_config_v2
  /external/webrtc/webrtc/modules/audio_processing/aecm/
echo_control_mobile.h 166 * size_t size_bytes Size in bytes of the echo path
175 size_t size_bytes);
185 * size_t size_bytes Size in bytes of the echo path
194 size_t size_bytes);
echo_control_mobile.c 517 size_t size_bytes)
528 if (size_bytes != WebRtcAecm_echo_path_size_bytes())
545 size_t size_bytes)
556 if (size_bytes != WebRtcAecm_echo_path_size_bytes())
566 memcpy(echo_path_ptr, aecm->aecmCore->channelStored, size_bytes);
  /external/webrtc/webrtc/modules/video_coding/codecs/vp9/
screenshare_layers.h 28 void LayerFrameEncoded(unsigned int size_bytes, uint8_t layer_id);
screenshare_layers.cc 41 void ScreenshareLayersVP9::LayerFrameEncoded(unsigned int size_bytes,
44 bits_used_[layer_id] += size_bytes * 8;
  /external/autotest/client/cros/audio/
audio_data.py 21 size_bytes: Number of bytes for one sample.
27 size_bytes=4), variable
31 size_bytes=2)) variable
42 size_bits = SAMPLE_FORMATS[sample_format]['size_bytes'] * 8
90 sample_format_dict['size_bytes'])
  /external/webrtc/webrtc/modules/audio_processing/
echo_control_mobile_impl.h 52 int SetEchoPath(const void* echo_path, size_t size_bytes) override;
53 int GetEchoPath(void* echo_path, size_t size_bytes) const override;
echo_control_mobile_impl.cc 264 size_t size_bytes) {
271 if (size_bytes != echo_path_size_bytes()) {
277 external_echo_path_ = new unsigned char[size_bytes];
279 memcpy(external_echo_path_, echo_path, size_bytes);
286 size_t size_bytes) const {
291 if (size_bytes != echo_path_size_bytes()) {
301 int32_t err = WebRtcAecm_GetEchoPath(my_handle, echo_path, size_bytes);
  /system/bt/btif/include/
btif_config.h 35 int* size_bytes);
  /external/google-tv-pairing-protocol/cpp/tests/polo/wire/protobuf/
protobufwireadaptertest.cc 81 unsigned char* size_bytes; local
82 util::PoloUtil::IntToBigEndianBytes(message_size, size_bytes);
86 std::vector<uint8_t>(size_bytes, size_bytes + 4));
93 unsigned char* size_bytes; local
94 util::PoloUtil::IntToBigEndianBytes(outer_string.length(), size_bytes);
98 memcpy(buffer, size_bytes, 4);
  /external/webrtc/webrtc/modules/video_coding/
media_optimization.cc 63 EncodedFrameSample(size_t size_bytes,
66 : size_bytes(size_bytes),
70 size_t size_bytes; member in struct:webrtc::media_optimization::MediaOptimization::EncodedFrameSample
347 // size_bytes.
348 encoded_frame_samples_.back().size_bytes += encoded_length;
503 framesize_sum += it->size_bytes;
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
nack.cc 94 size_t size_bytes = local
96 size_t header_length = ((size_bytes + 3) / 4) - 1; // As 32bit words - 1
  /external/google-tv-pairing-protocol/cpp/src/polo/wire/protobuf/
protobufwireadapter.cc 402 uint8_t* size_bytes; local
403 util::PoloUtil::IntToBigEndianBytes(outer_string.length(), size_bytes);
408 std::copy(size_bytes, size_bytes + 4, iter);
410 delete[] size_bytes;
  /system/bt/btif/src/
btif_config.cc 288 int* size_bytes) {
293 CHECK(size_bytes != NULL);
299 strlcpy(value, stored_value, *size_bytes);
302 *size_bytes = strlen(value) + 1;
  /external/webrtc/webrtc/modules/audio_processing/include/
mock_audio_processing.h 72 int(const void* echo_path, size_t size_bytes));
74 int(void* echo_path, size_t size_bytes));
audio_processing.h 739 // Controlling the echo path this way requires the data |size_bytes| to match
747 virtual int SetEchoPath(const void* echo_path, size_t size_bytes) = 0;
748 virtual int GetEchoPath(void* echo_path, size_t size_bytes) const = 0;
    [all...]
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_utility.cc 471 size_t size_bytes,
474 if (size_bytes < RtcpCommonHeader::kHeaderSizeBytes) {
475 LOG(LS_WARNING) << "Too little data (" << size_bytes << " byte"
476 << (size_bytes != 1 ? "s" : "")
496 if (size_bytes < packet_size_words * 4) {
497 LOG(LS_WARNING) << "Buffer too small (" << size_bytes
    [all...]
rtcp_utility.h 356 size_t size_bytes,

Completed in 276 milliseconds

1 2