/external/replicaisland/src/com/replica/replicaisland/ |
D | SpriteAnimation.java | 32 public SpriteAnimation(int animationId, int frameCount) { in SpriteAnimation() argument 34 mFrames = new FixedSizeArray<AnimationFrame>(frameCount); in SpriteAnimation() 35 mFrameStartTimes = new float[frameCount]; in SpriteAnimation() 47 final int frameCount = frames.getCount(); in getFrame() local 48 result = frames.get(frameCount - 1); in getFrame() 50 if (frameCount > 1) { in getFrame() 68 for (int x = 0; x < frameCount; x++) { in getFrame()
|
/external/drrickorang/LoopbackApp/app/src/main/cpp/ |
D | byte_buffer.c | 25 const char *srcBuffer, size_t frameCount, int channels) { in byteBuffer_write() argument 38 if (part1 > frameCount) { in byteBuffer_write() 39 part1 = frameCount; in byteBuffer_write() 46 size_t part2 = frameCount - part1; in byteBuffer_write() 56 atomic_store(rear_ptr, rear + frameCount); in byteBuffer_write() 57 return frameCount; in byteBuffer_write()
|
/external/v8/tools/clang/rewrite_to_chrome_style/tests/ |
D | variables-original.cc | 8 int frameCount = 0; variable 23 return frameCount + in function() 30 using blink::frameCount; 35 return frameCount + blink::frameCount; in F()
|
/external/deqp/modules/egl/ |
D | teglGLES2SharedRenderingPerfTests.cpp | 76 int frameCount; member 661 for (int frameNdx = 0; frameNdx < m_config.frameCount; frameNdx++) in render() 988 …red: : " << config.triangleCount * config.drawCallCount * config.frameCount * config.perThre… in logTestConfig() 991 …log << TestLog::Message << "Number of frames rendered with each context: " << config.frameCount … in logTestConfig() 1095 basicConfig.frameCount = 10; in init() 1144 smallConfig.frameCount = 10; in init() 1147 smallConfig.frameCount *= 4; in init() 1156 bigConfig.frameCount = 10; in init() 1159 bigConfig.frameCount *= 4; in init() 1192 smallConfig.frameCount = 10; in init() [all …]
|
/external/drrickorang/LoopbackApp/app/src/main/cpp/lb2/ |
D | audio_buffer.h | 41 CountsConverter(size_t frameCount, int channelCount) : in CountsConverter() argument 42 mFrameCount(frameCount), mChannelCount(channelCount) {} in CountsConverter() 74 AudioBufferBase(T* const data, size_t frameCount, int channelCount) in AudioBufferBase() argument 75 : CountsConverter<T>(frameCount, channelCount), mData(data) {} in AudioBufferBase() 108 AudioBuffer(size_t frameCount, int channelCount) in AudioBuffer() argument 109 : AudioBufferBase<T>(new T[frameCount * channelCount], frameCount, channelCount), in AudioBuffer() 133 AudioBufferView(T* const data, size_t frameCount, int channelCount) in AudioBufferView() argument 134 : AudioBufferBase<T>(data, frameCount, channelCount) {} in AudioBufferView()
|
D | loopback2.cpp | 44 int lb2Init(void **ppLbData, int samplingRate, int frameCount, int /*micSource*/, in lb2Init() argument 53 static_cast<PerformanceMode>(performanceMode), frameCount, in lb2Init() 63 static_cast<PerformanceMode>(performanceMode),frameCount, in lb2Init()
|
D | test_context.cpp | 22 AudioBufferView<sample_t> GlitchTestContext::getNextImpulse(size_t frameCount) { in getNextImpulse() argument 24 auto sineBuffer = mSineBuffer.getView(0, frameCount); in getNextImpulse()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/ |
D | VisualSampleEntry.java | 68 private int frameCount = 1; field in VisualSampleEntry 95 return frameCount; in getFrameCount() 126 public void setFrameCount(int frameCount) { in setFrameCount() argument 127 this.frameCount = frameCount; in setFrameCount() 150 frameCount = IsoTypeReader.readUInt16(content); in _parseDetails()
|
/external/skqp/src/utils/ |
D | SkInterpolator.cpp | 28 void SkInterpolatorBase::reset(int elemCount, int frameCount) { in reset() argument 31 fFrameCount = SkToS16(frameCount); in reset() 138 SkInterpolator::SkInterpolator(int elemCount, int frameCount) { in SkInterpolator() argument 140 this->reset(elemCount, frameCount); in SkInterpolator() 143 void SkInterpolator::reset(int elemCount, int frameCount) { in reset() argument 144 INHERITED::reset(elemCount, frameCount); in reset() 146 sizeof(SkTimeCode)) * frameCount); in reset() 148 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount); in reset()
|
/external/skia/src/utils/ |
D | SkInterpolator.cpp | 28 void SkInterpolatorBase::reset(int elemCount, int frameCount) { in reset() argument 31 fFrameCount = SkToS16(frameCount); in reset() 138 SkInterpolator::SkInterpolator(int elemCount, int frameCount) { in SkInterpolator() argument 140 this->reset(elemCount, frameCount); in SkInterpolator() 143 void SkInterpolator::reset(int elemCount, int frameCount) { in reset() argument 144 INHERITED::reset(elemCount, frameCount); in reset() 146 sizeof(SkTimeCode)) * frameCount); in reset() 148 fValues = (SkScalar*) ((char*) fStorage + sizeof(SkTimeCode) * frameCount); in reset()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/ |
D | JDWPStackTraceBaseTest.java | 100 int frameCount = jdwpGetFrameCount(threadID); in findFrameInfo() local 101 logWriter.println("=> frames count = " + frameCount); in findFrameInfo() 104 FrameInfo[] frameIDs = jdwpGetFrames(threadID, 0, frameCount); in findFrameInfo() 105 if (frameIDs.length != frameCount) { in findFrameInfo() 108 + frameCount); in findFrameInfo() 113 for (int i = 0; i < frameCount; i++) { in findFrameInfo()
|
D | ThisObjectTest.java | 88 int frameCount = jdwpGetFrameCount(mainThread); in testThisObjectTest001() local 89 logWriter.println("==> frames count = " + frameCount); in testThisObjectTest001() 92 FrameInfo[] frameIDs = jdwpGetFrames(mainThread, 0, frameCount); in testThisObjectTest001() 94 assertEquals("Invalid number of frames,", frameCount, frameIDs.length); in testThisObjectTest001() 97 for (int i = 0; i < frameCount; i++) { in testThisObjectTest001()
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
D | FrameCountTest.java | 77 int frameCount = reply.getNextValueAsInt(); in testFrameCount001() local 78 logWriter.println("\tframe count = " + frameCount); in testFrameCount001() 80 if (frameCount != expectedCount) { in testFrameCount001() 81 printErrorAndFail("Unexpected frame count = " + frameCount in testFrameCount001()
|
D | OwnedMonitorsStackDepthInfoTest.java | 91 int frameCount = jdwpGetFrameCount(testedThreadID); in testOwnedMonitorsStackDepthInfo() local 93 int[] expectedStackDepth = new int[] { frameCount - 4, frameCount - 4, frameCount - 2 }; in testOwnedMonitorsStackDepthInfo()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
D | MockSpdyPeer.java | 43 private int frameCount = 0; field in MockSpdyPeer 66 frameCount++; in acceptFrame() 75 public int frameCount() { in frameCount() method in MockSpdyPeer 76 return frameCount; in frameCount() 80 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), false)); in sendFrame() 89 outFrames.add(new OutFrame(frameCount++, bytesOut.size(), false)); in sendFrame() 154 for (int i = 0; i < frameCount; i++) { in readAndWriteFrames()
|
/external/skia/tests/ |
D | CodecAnimTest.cpp | 227 int frameCount; in DEF_TEST() local 233 frameCount = frameInfos.empty() ? 1 : frameInfos.size(); in DEF_TEST() 236 frameCount = codec->getFrameCount(); in DEF_TEST() 240 if (frameCount != expected) { in DEF_TEST() 242 rec.fName, expected, frameCount); in DEF_TEST() 247 if (1 == frameCount) { in DEF_TEST() 251 for (int i = 0; i < frameCount; i++) { in DEF_TEST() 309 std::vector<SkBitmap> cachedFrames(frameCount); in DEF_TEST() 344 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
|
D | AnimatedImageTest.cpp | 122 const int frameCount = codec->getFrameCount(); in DEF_TEST() local 136 std::vector<SkBitmap> expected(frameCount); in DEF_TEST() 137 std::vector<sk_sp<SkPicture>> pictures(frameCount); in DEF_TEST() 138 for (int i = 0; i < frameCount; i++) { in DEF_TEST() 151 if (i >= frameCount - 2) { in DEF_TEST() 158 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
|
/external/skqp/tests/ |
D | CodecAnimTest.cpp | 227 int frameCount; in DEF_TEST() local 233 frameCount = frameInfos.empty() ? 1 : frameInfos.size(); in DEF_TEST() 236 frameCount = codec->getFrameCount(); in DEF_TEST() 240 if (frameCount != expected) { in DEF_TEST() 242 rec.fName, expected, frameCount); in DEF_TEST() 247 if (1 == frameCount) { in DEF_TEST() 251 for (int i = 0; i < frameCount; i++) { in DEF_TEST() 309 std::vector<SkBitmap> cachedFrames(frameCount); in DEF_TEST() 344 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
|
D | AnimatedImageTest.cpp | 133 const int frameCount = codec->getFrameCount(); in DEF_TEST() local 147 std::vector<SkBitmap> expected(frameCount); in DEF_TEST() 148 std::vector<sk_sp<SkPicture>> pictures(frameCount); in DEF_TEST() 149 for (int i = 0; i < frameCount; i++) { in DEF_TEST() 162 if (i >= frameCount - 2) { in DEF_TEST() 169 for (int i = 0; i < frameCount; i++) { in DEF_TEST()
|
/external/skqp/include/utils/ |
D | SkInterpolator.h | 27 void reset(int elemCount, int frameCount); 91 SkInterpolator(int elemCount, int frameCount); 92 void reset(int elemCount, int frameCount);
|
/external/skia/include/utils/ |
D | SkInterpolator.h | 27 void reset(int elemCount, int frameCount); 91 SkInterpolator(int elemCount, int frameCount); 92 void reset(int elemCount, int frameCount);
|
/external/drrickorang/LoopbackApp/app/src/main/cpp/audio_utils/ |
D | fifo.c | 29 void audio_utils_fifo_init(struct audio_utils_fifo *fifo, size_t frameCount, size_t frameSize, in audio_utils_fifo_init() argument 32 ALOG_ASSERT(fifo != NULL && frameCount > 0 && frameSize > 0 && buffer != NULL); in audio_utils_fifo_init() 33 fifo->mFrameCount = frameCount; in audio_utils_fifo_init() 34 fifo->mFrameCountP2 = roundup(frameCount); in audio_utils_fifo_init()
|
/external/aac/libSACenc/src/ |
D | sacenc_tree.cpp | 132 INT frameCount; member 256 hST->frameCount = 0; in fdk_sacenc_spaceTree_Init() 316 if (hST->frameCount % 2 == 0) { in SpaceTree_FrameKeep212() 333 hST->frameCount++; in SpaceTree_FrameKeep212() 334 if (hST->frameCount == MAX_KEEP_FRAMECOUNT) { in SpaceTree_FrameKeep212() 335 hST->frameCount = 0; in SpaceTree_FrameKeep212()
|
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/ |
D | GifHeader.java | 15 int frameCount = 0; field in GifHeader 48 return frameCount; in getNumFrames()
|
/external/proguard/src/proguard/preverify/ |
D | CodePreverifier.java | 175 int frameCount = stackMapFrameList.size(); in visitCodeAttribute0() local 192 if (frameCount != originalFrameCount || in visitCodeAttribute0() 199 else if (frameCount != 0) in visitCodeAttribute0() 205 if (frameCount == 0) in visitCodeAttribute0() 218 FullFrame[] stackMapFrames = new FullFrame[frameCount]; in visitCodeAttribute0() 227 StackMapFrame[] stackMapFrames = new StackMapFrame[frameCount]; in visitCodeAttribute0()
|