/prebuilts/go/linux-x86/src/cmd/internal/obj/arm64/ |
obj7.go | 51 func (c *ctxt7) stacksplit(p *obj.Prog, framesize int32) *obj.Prog { 66 if framesize <= objabi.StackSmall { 83 } else if framesize <= objabi.StackBig { 84 // large stack: SP-framesize < stackguard-StackSmall 85 // SUB $(framesize-StackSmall), SP, R2 91 p.From.Offset = int64(framesize) - objabi.StackSmall 104 // SP-stackguard+StackGuard < framesize + (StackGuard-StackSmall) 111 // MOV $(framesize+(StackGuard-StackSmall)), R3 143 p.From.Offset = int64(framesize) + (objabi.StackGuard - objabi.StackSmall) 168 spfix.Spadj = -framesize [all...] |
/external/libopus/ |
README.draft | 45 -framesize <2.5|5|10|20|40|60> : frame size in ms; default: 20
|
/external/llvm/lib/Target/MSP430/ |
MSP430FrameLowering.cpp | 58 uint64_t FrameSize = StackSize - 2; 59 NumBytes = FrameSize - MSP430FI->getCalleeSavedFrameSize(); 132 uint64_t FrameSize = StackSize - 2; 133 NumBytes = FrameSize - CSSize;
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/ |
kenny.cc | 106 int framesize = 30; /* ms */ local 261 framesize = atoi(argv[i + 1]); 262 if ((framesize != 30) && (framesize != 60)) { 264 "Valid length are 30 and 60 msec.\n", framesize); 267 printf("\nFrame Length: %d\n", framesize); 500 err = WebRtcIsacfix_Control(ISAC_main_inst, bottleneck, framesize); 507 err = WebRtcIsacfix_ControlBwe(ISAC_main_inst, rateBPS, framesize, fixedFL); 645 WebRtcIsacfix_Control(ISAC_main_inst, bottleneck, framesize);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/ReleaseTest-API/ |
ReleaseTest-API.cc | 50 int framesize = 30; /* ms */ local 241 framesize = atoi(argv[i + 1]); 242 if ((framesize != 30) && (framesize != 60)) { 244 "msec.\n", framesize); 248 printf("Frame Length: %d\n", framesize); 505 err = WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize); 518 err = WebRtcIsac_ControlBwe(ISAC_main_inst, rateBPS, framesize, fixedFL); 682 WebRtcIsac_Control(ISAC_main_inst, bottleneck, framesize);
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/ |
SoftMPEG4.cpp | 233 OMX_U32 frameSize; 241 frameSize = (OMX_U32)(yFrameSize + (yFrameSize / 2)); 243 if (outHeader->nAllocLen < frameSize) { 308 outHeader->nFilledLen = frameSize;
|
/frameworks/av/media/libstagefright/rtsp/ |
ARTPWriter.cpp | 502 "a=framesize:" PT_STR " "); 736 size_t frameSize = isWide ? kFrameSizeWB[FT] : kFrameSizeNB[FT]; 739 frameSize = (frameSize + 7) / 8 + 1; 741 return frameSize; 815 size_t frameSize = getFrameSize(isWide, FT); 818 memcpy(&data[dstOffset], &mediaData[srcOffset], frameSize - 1); 819 srcOffset += frameSize - 1; 820 dstOffset += frameSize - 1;
|
/hardware/google/av/media/codecs/aac/ |
C2SoftAacDec.cpp | 354 >= mStreamInfo->frameSize * mStreamInfo->numChannels) { 361 int numSamples = numFrames * (mStreamInfo->frameSize * mStreamInfo->numChannels); 573 (mStreamInfo->frameSize * mStreamInfo->numChannels)) { 603 mStreamInfo->frameSize * sizeof(int16_t) * mStreamInfo->numChannels; 607 mStreamInfo->frameSize * mStreamInfo->numChannels)) { 618 mStreamInfo->frameSize * mStreamInfo->numChannels)) { 757 if (avail > mStreamInfo->frameSize * mStreamInfo->numChannels) { 758 avail = mStreamInfo->frameSize * mStreamInfo->numChannels; 790 int32_t tmpOutBufferSamples = mStreamInfo->frameSize * mStreamInfo->numChannels; [all...] |
/system/bt/stack/a2dp/ |
a2dp_aac_decoder.cc | 98 size_t frame_len = info->frameSize * info->numChannels *
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
bandwidth_estimator.c | 135 * - frameSize : length of signal frame in ms, from iSAC decoder 148 const int16_t frameSize, 197 if (frameSize == 60) { 198 /* If frameSize changed since last call, from 30 to 60, recalculate some values */ 199 if ( (frameSize != bweStr->prevFrameSizeMs) && (bweStr->countUpdates > 0)) { 213 /* If frameSize changed since last call, from 60 to 30, recalculate some values */ 214 if ( (frameSize != bweStr->prevFrameSizeMs) && (bweStr->countUpdates > 0)) { 238 bweStr->prevFrameSizeMs = frameSize; 251 /* Calculate framesize in msec */ 252 frameSizeSampl = SAMPLES_PER_MSEC * frameSize; [all...] |
settings.h | 35 #define FRAMESIZE 30 37 #define FRAMESAMPLES 480 /* ((FRAMESIZE*FS)/1000) */
|
/prebuilts/go/darwin-x86/src/cmd/internal/obj/arm/ |
obj5.go | 712 func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog { 726 if framesize <= objabi.StackSmall { 735 } else if framesize <= objabi.StackBig { 736 // large stack: SP-framesize < stackguard-StackSmall 737 // MOVW $-(framesize-StackSmall)(SP), R2 744 p.From.Offset = -(int64(framesize) - objabi.StackSmall) 756 // SP-stackguard+StackGuard < framesize + (StackGuard-StackSmall) 762 // MOVW.NE $(framesize+(StackGuard-StackSmall)), R3 791 p.From.Offset = int64(framesize) + (objabi.StackGuard - objabi.StackSmall) 818 spfix.Spadj = -framesize [all...] |
/prebuilts/go/darwin-x86/src/cmd/internal/obj/s390x/ |
objz.go | 534 func (c *ctxtz) stacksplitPre(p *obj.Prog, framesize int32) (*obj.Prog, *obj.Prog) { 551 if framesize <= objabi.StackSmall { 579 } else if framesize <= objabi.StackBig { 580 // large stack: SP-framesize < stackguard-StackSmall 581 // ADD $-(framesize-StackSmall), SP, R4 587 p.From.Offset = -(int64(framesize) - objabi.StackSmall) 602 // SP-stackguard+StackGuard <= framesize + (StackGuard-StackSmall) 613 // MOVD $(framesize+(StackGuard-StackSmall)), TEMP 646 p.From.Offset = int64(framesize) + objabi.StackGuard - objabi.StackSmall 661 func (c *ctxtz) stacksplitPost(p *obj.Prog, pPre *obj.Prog, pPreempt *obj.Prog, framesize int32) *obj.Prog [all...] |
/prebuilts/go/linux-x86/src/cmd/internal/obj/arm/ |
obj5.go | 712 func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog { 726 if framesize <= objabi.StackSmall { 735 } else if framesize <= objabi.StackBig { 736 // large stack: SP-framesize < stackguard-StackSmall 737 // MOVW $-(framesize-StackSmall)(SP), R2 744 p.From.Offset = -(int64(framesize) - objabi.StackSmall) 756 // SP-stackguard+StackGuard < framesize + (StackGuard-StackSmall) 762 // MOVW.NE $(framesize+(StackGuard-StackSmall)), R3 791 p.From.Offset = int64(framesize) + (objabi.StackGuard - objabi.StackSmall) 818 spfix.Spadj = -framesize [all...] |
/prebuilts/go/linux-x86/src/cmd/internal/obj/s390x/ |
objz.go | 534 func (c *ctxtz) stacksplitPre(p *obj.Prog, framesize int32) (*obj.Prog, *obj.Prog) { 551 if framesize <= objabi.StackSmall { 579 } else if framesize <= objabi.StackBig { 580 // large stack: SP-framesize < stackguard-StackSmall 581 // ADD $-(framesize-StackSmall), SP, R4 587 p.From.Offset = -(int64(framesize) - objabi.StackSmall) 602 // SP-stackguard+StackGuard <= framesize + (StackGuard-StackSmall) 613 // MOVD $(framesize+(StackGuard-StackSmall)), TEMP 646 p.From.Offset = int64(framesize) + objabi.StackGuard - objabi.StackSmall 661 func (c *ctxtz) stacksplitPost(p *obj.Prog, pPre *obj.Prog, pPreempt *obj.Prog, framesize int32) *obj.Prog [all...] |
/external/aac/libDRCdec/src/ |
drcDec_reader.h | 113 const int frameSize, const int deltaTminDefault, 118 HANDLE_UNI_DRC_CONFIG hUniDrcConfig, const int frameSize,
|
drcGainDec_init.h | 107 initGainDec(HANDLE_DRC_GAIN_DECODER hGainDec, const int frameSize, 110 void initDrcGainBuffers(const int frameSize, DRC_GAIN_BUFFERS* drcGainBuffers);
|
/external/fec/ |
vtest27.c | 111 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain); 154 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
|
vtest29.c | 111 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain); 154 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
|
vtest39.c | 111 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain); 155 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
|
vtest615.c | 113 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain); 162 printf("nframes = %d framesize = %d ebn0 = %.2f dB gain = %g\n",trials,framebits,ebn0,Gain);
|
/external/libxcam/plugins/smart/dvs/libdvs/ |
test-image-stabilization.cpp | 119 Size frameSize = Size(source->width(), source->height()); 143 outputFps, dvs->trimedVideoSize(frameSize));
|
/external/speex/libspeex/ |
modes.h | 118 int frameSize; /**< Size of frames used for encoding */ 137 int frameSize; /**< Size of frames used for encoding */
|
/external/webrtc/webrtc/modules/video_capture/mac/qtkit/ |
video_capture_qtkit_objc.mm | 242 size_t frameSize = bytesPerRow * frameHeight; 251 _owner->IncomingFrame((unsigned char*)baseAddress, frameSize,
|
/frameworks/base/services/core/java/com/android/server/wm/utils/ |
WmDisplayCutout.java | 39 public WmDisplayCutout(DisplayCutout inner, Size frameSize) { 41 mFrameSize = frameSize;
|