/external/ltp/testcases/kernel/device-drivers/v4l/user_space/ |
D | test_VIDIOC_ENUM_FRAMESIZES.c | 49 struct v4l2_frmsizeenum framesize; in do_test_VIDIOC_ENUM_FRAMESIZES() local 57 memset(&framesize, 0xff, sizeof(framesize)); in do_test_VIDIOC_ENUM_FRAMESIZES() 58 framesize.index = i; in do_test_VIDIOC_ENUM_FRAMESIZES() 59 framesize.pixel_format = fmt; in do_test_VIDIOC_ENUM_FRAMESIZES() 61 ioctl(get_video_fd(), VIDIOC_ENUM_FRAMESIZES, &framesize); in do_test_VIDIOC_ENUM_FRAMESIZES() 75 CU_ASSERT_EQUAL(framesize.index, i); in do_test_VIDIOC_ENUM_FRAMESIZES() 76 CU_ASSERT_EQUAL(framesize.pixel_format, fmt); in do_test_VIDIOC_ENUM_FRAMESIZES() 77 CU_ASSERT(valid_framesize_type(framesize.type)); in do_test_VIDIOC_ENUM_FRAMESIZES() 80 first_type = framesize.type; in do_test_VIDIOC_ENUM_FRAMESIZES() 82 CU_ASSERT_EQUAL(framesize.type, first_type); in do_test_VIDIOC_ENUM_FRAMESIZES() [all …]
|
D | v4l2_show.c | 130 void show_v4l2_frmsizeenum(struct v4l2_frmsizeenum *framesize) in show_v4l2_frmsizeenum() argument 135 framesize->index, framesize->pixel_format, framesize->type); in show_v4l2_frmsizeenum() 137 switch (framesize->type) { in show_v4l2_frmsizeenum() 140 framesize->discrete.width, framesize->discrete.height); in show_v4l2_frmsizeenum() 150 framesize->stepwise.min_width, in show_v4l2_frmsizeenum() 151 framesize->stepwise.max_width, in show_v4l2_frmsizeenum() 152 framesize->stepwise.step_width, in show_v4l2_frmsizeenum() 153 framesize->stepwise.min_height, in show_v4l2_frmsizeenum() 154 framesize->stepwise.max_height, in show_v4l2_frmsizeenum() 155 framesize->stepwise.step_height); in show_v4l2_frmsizeenum() [all …]
|
D | v4l2_show.h | 17 void show_v4l2_frmsizeenum(struct v4l2_frmsizeenum* framesize);
|
/external/u-boot/doc/device-tree-bindings/exynos/ |
D | sound.txt | 12 - samsung,i2s-lr-clk-framesize : lr clock frame size 13 - samsung,i2s-bit-clk-framesize : bit clock frame size 24 samsung,i2s-lr-clk-framesize = <256>; 25 samsung,i2s-bit-clk-framesize = <32>;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/ |
D | test_iSACfixfloat.c | 92 int framesize = 30; /* ms */ in main() local 293 err = WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); in main() 310 err = WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); in main() 323 err = WebRtcIsacfix_Control(ISACFIX_main_inst, bottleneck, framesize); in main() 339 err = WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); in main() 352 err = WebRtcIsacfix_Control(ISACFIX_main_inst, bottleneck, framesize); in main() 366 err = WebRtcIsacfix_Control(ISACFIX_main_inst, bottleneck, framesize); in main() 445 WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); in main() 447 WebRtcIsacfix_Control(ISACFIX_main_inst, bottleneck, framesize); in main()
|
D | kenny.cc | 106 int framesize = 30; /* ms */ in main() local 261 framesize = atoi(argv[i + 1]); in main() 262 if ((framesize != 30) && (framesize != 60)) { in main() 264 "Valid length are 30 and 60 msec.\n", framesize); in main() 267 printf("\nFrame Length: %d\n", framesize); in main() 500 err = WebRtcIsacfix_Control(ISAC_main_inst, bottleneck, framesize); in main() 507 err = WebRtcIsacfix_ControlBwe(ISAC_main_inst, rateBPS, framesize, fixedFL); in main() 645 WebRtcIsacfix_Control(ISAC_main_inst, bottleneck, framesize); in main()
|
/external/python/cpython2/Lib/test/ |
D | audiotests.py | 123 framesize = self.nchannels * self.sampwidth 124 f.writeframes(self.frames[:-framesize]) 125 f.writeframes(self.frames[-framesize:]) 197 framesize = self.nchannels * self.sampwidth 198 self.check_file(testfile, self.nframes - 1, self.frames[:-framesize]) 228 framesize = self.nchannels * self.sampwidth 229 chunk1 = self.frames[:2 * framesize] 230 chunk2 = self.frames[2 * framesize: 4 * framesize]
|
/external/u-boot/arch/arm/dts/ |
D | exynos5250.dtsi | 88 samsung,i2s-lr-clk-framesize = <256>; 89 samsung,i2s-bit-clk-framesize = <32>; 100 samsung,i2s-lr-clk-framesize = <256>; 101 samsung,i2s-bit-clk-framesize = <32>;
|
/external/python/cpython3/Lib/test/ |
D | audiotests.py | 186 framesize = self.nchannels * self.sampwidth 187 f.writeframes(self.frames[:-framesize]) 188 f.writeframes(self.frames[-framesize:]) 257 framesize = self.nchannels * self.sampwidth 258 self.check_file(testfile, self.nframes - 1, self.frames[:-framesize]) 288 framesize = self.nchannels * self.sampwidth 289 chunk1 = self.frames[:2 * framesize] 290 chunk2 = self.frames[2 * framesize: 4 * framesize]
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ |
D | ReleaseTest-API.cc | 50 int framesize = 30; /* ms */ in main() local 241 framesize = atoi(argv[i + 1]); in main() 242 if ((framesize != 30) && (framesize != 60)) { in main() 244 "msec.\n", framesize); in main() 248 printf("Frame Length: %d\n", framesize); in main() 505 err = WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); in main() 518 err = WebRtcIsac_ControlBwe(ISAC_main_inst, rateBPS, framesize, fixedFL); in main() 682 WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); in main()
|
/external/libxaac/decoder/ |
D | ixheaacd_lpfuncs.c | 637 WORD32 framesize, WORD16 q_shift, in ixheaacd_eld_dec_windowing() argument 648 WORD32 delay = framesize >> 2; in ixheaacd_eld_dec_windowing() 703 loop_size = (((framesize * 3) - framesize) >> 2) - 1; in ixheaacd_eld_dec_windowing() 729 loop_size = ((((framesize << 2) - delay) - (framesize * 3)) >> 2) - 1; in ixheaacd_eld_dec_windowing() 796 loop_size = (((framesize * 3) - framesize) >> 2) - 1; in ixheaacd_eld_dec_windowing() 821 loop_size = ((((framesize << 2) - delay) - (framesize * 3)) >> 2) - 1; in ixheaacd_eld_dec_windowing()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/ |
D | isac_float_type.h | 23 int framesize) { in Control() 24 return WebRtcIsac_Control(inst, rate, framesize); in Control()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | isac_fix_type.h | 25 int framesize) { in Control() argument 26 return WebRtcIsacfix_Control(inst, rate, framesize); in Control()
|
D | isacfix.c | 1084 int framesize) in WebRtcIsacfix_Control() argument 1107 if (framesize == 30 || framesize == 60) in WebRtcIsacfix_Control() 1108 ISAC_inst->ISACenc_obj.new_framelength = (int16_t)((FS/1000) * framesize); in WebRtcIsacfix_Control()
|
/external/libopus/src/ |
D | opus.c | 203 int framesize; in opus_packet_parse_impl() local 213 framesize = opus_packet_get_samples_per_frame(data, 48000); in opus_packet_parse_impl() 255 if (count <= 0 || framesize*(opus_int32)count > 5760) in opus_packet_parse_impl()
|
D | repacketizer.c | 70 rp->framesize = opus_packet_get_samples_per_frame(data, 8000); in opus_repacketizer_cat_impl() 80 if ((curr_nb_frames+rp->nb_frames)*rp->framesize > 960) in opus_repacketizer_cat_impl()
|
D | opus_private.h | 44 int framesize; member
|
/external/pcre/dist2/src/ |
D | pcre2_jit_compile.c | 252 int framesize; member 273 int framesize; member 284 int framesize; member 350 int framesize; member 8369 int framesize; in compile_assert_matchingpath() local 8404 framesize = get_framesize(common, cc, NULL, FALSE, &needs_control_head); in compile_assert_matchingpath() 8405 backtrack->framesize = framesize; in compile_assert_matchingpath() 8421 if (framesize < 0) in compile_assert_matchingpath() 8430 if (framesize == no_frame) in compile_assert_matchingpath() 8452 allocate_stack(common, framesize + extrasize); in compile_assert_matchingpath() [all …]
|
/external/llvm/lib/Target/Mips/ |
D | Mips16InstrFormats.td | 379 // <|opcode|svrs|s|ra|s0|s1|framesize> 390 bits<4> framesize = 0; 400 let Inst{3-0} = framesize; 406 // <|opcode|svrs|s|ra|s0|s1|framesize> 615 bits<8> framesize =0; 627 let Inst{23-20} = framesize{7-4}; 636 let Inst{3-0} = framesize{3-0};
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Mips/ |
D | Mips16InstrFormats.td | 379 // <|opcode|svrs|s|ra|s0|s1|framesize> 390 bits<4> framesize = 0; 400 let Inst{3-0} = framesize; 406 // <|opcode|svrs|s|ra|s0|s1|framesize> 615 bits<8> framesize =0; 627 let Inst{23-20} = framesize{7-4}; 636 let Inst{3-0} = framesize{3-0};
|
/external/u-boot/arch/mips/include/asm/ |
D | asm.h | 65 #define NESTED(symbol, framesize, rpc) \ argument 71 symbol: .frame sp, framesize, rpc
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/include/ |
D | isacfix.h | 375 int framesize);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/include/ |
D | isac.h | 265 int framesize);
|
/external/u-boot/drivers/usb/eth/ |
D | asix88179.c | 472 int actual_len, framesize; in asix_send_common() local 482 framesize = dev_priv->maxpacketsize; in asix_send_common() 484 if (((length + 8) % framesize) == 0) in asix_send_common()
|
/external/mesa3d/src/gallium/state_trackers/omx_bellagio/ |
D | vid_dec.c | 280 unsigned framesize = def->format.video.nFrameWidth * def->format.video.nFrameHeight; in vid_dec_SetParameter() local 283 port->sPortParam.nBufferSize = framesize * 512 / (16*16); in vid_dec_SetParameter() 290 port->sPortParam.nBufferSize = framesize*3/2; in vid_dec_SetParameter()
|