HomeSort by relevance Sort by last modified time
    Searched refs:samples (Results 176 - 200 of 1056) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
SilenceTrackImpl.java 19 List<ByteBuffer> samples = new LinkedList<ByteBuffer>(); field in class:SilenceTrackImpl
31 samples.add((ByteBuffer) ByteBuffer.wrap(new byte[]{
75 return samples;
  /ndk/build/tools/
dev-cleanup.sh 38 rm -rf $DIR/samples
96 for PROJECT in $DIR/samples/*; do
99 for PROJECT in $DIR/platforms/android-*/samples/*; do
  /pdk/apps/CameraITS/tests/scene0/
test_gyro_bias.py 32 # Number of samples averaged together, in the plot.
59 # Group samples into size-N groups and average each together, to get rid
70 pylab.ylabel("Gyro readings (mean of %d samples)"%(N))
74 for samples in [xs,ys,zs]:
75 assert(samples.mean() < MEAN_THRESH)
76 assert(numpy.var(samples) < VAR_THRESH)
  /cts/suite/audio_quality/lib/src/task/
TaskSound.cpp 82 int samples = time * AudioHardware::ESampleRate_44100 / 1000; local
84 AudioHardware::ESampleRate_44100, freq, samples, true);
92 int samples = time * AudioHardware::ESampleRate_44100 / 1000; local
94 samples, true);
  /external/chromium_org/ppapi/examples/audio/
audio.cc 72 static void SineWaveCallbackTrampoline(void* samples,
75 static_cast<MyInstance*>(thiz)->SineWaveCallback(samples, num_bytes);
78 void SineWaveCallback(void* samples, uint32_t num_bytes) {
88 int16_t* buf = reinterpret_cast<int16_t*>(samples);
  /external/chromium_org/remoting/client/
audio_player.cc 82 void AudioPlayer::AudioPlayerCallback(void* samples,
86 audio_player->FillWithSamples(samples, buffer_size);
96 void AudioPlayer::FillWithSamples(void* samples, uint32 buffer_size) {
105 char* next_sample = static_cast<char*>(samples);
109 // Check if we've run out of samples for this packet.
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/
RenderTarget11.cpp 21 static bool getTextureProperties(ID3D11Resource *resource, unsigned int *mipLevels, unsigned int *samples)
31 *samples = 0;
44 *samples = texDesc.SampleDesc.Count > 1 ? texDesc.SampleDesc.Count : 0;
57 *samples = 0;
120 unsigned int mipLevels, samples; local
121 getTextureProperties(resource, &mipLevels, &samples);
175 unsigned int mipLevels, samples; local
176 getTextureProperties(resource, &mipLevels, &samples);
213 unsigned int mipLevels, samples; local
214 getTextureProperties(mTexture, &mipLevels, &samples);
259 unsigned int mipLevels, samples; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/
RenderTarget9.h 24 RenderTarget9(Renderer *renderer, GLsizei width, GLsizei height, GLenum internalFormat, GLsizei samples);
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_fbo.h 74 st_new_renderbuffer_fb(enum pipe_format format, int samples, boolean sw);
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
monsoon_profiler.py 8 Data collected is a namedtuple of (amps, volts), at 5000 samples/second.
31 samples = []
39 samples += mon.CollectData()
45 for i, sample in enumerate(samples)]
53 power_samples = [s.amps * s.volts for s in samples]
72 # read the samples from the USB port while running the test.
  /external/chromium_org/tools/telemetry/telemetry/timeline/
counter.py 8 # counter sample into an event. During stable operation, the samples are stored
49 """ Stores all the samples for a given counter.
55 self.samples = []
77 if self.num_series * self.num_samples != len(self.samples):
79 'Length of samples must be a multiple of length of timestamps.')
83 if not len(self.samples):
90 total += self.samples[i * self.num_series + j]
  /external/flac/libFLAC/include/private/
stream_encoder_framing.h 43 FLAC__bool FLAC__subframe_add_verbatim(const FLAC__Subframe_Verbatim *subframe, unsigned samples, unsigned subframe_bps, unsigned wasted_bits, FLAC__BitWriter *bw);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionContainsAllTester.java 52 collection.containsAll(MinimalCollection.of(samples.e0)));
67 collection.containsAll(MinimalCollection.of(samples.e0, samples.e3)));
72 collection.containsAll(MinimalCollection.of(samples.e3)));
  /external/mesa3d/src/mesa/state_tracker/
st_cb_fbo.h 74 st_new_renderbuffer_fb(enum pipe_format format, int samples, boolean sw);
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/samples/echo/
EchoSocketSample.java 1 package fi.iki.elonen.samples.echo;
  /frameworks/base/tests/ImfTest/tests/src/com/android/imftest/samples/
BigEditTextActivityNonScrollablePanScanTests.java 17 package com.android.imftest.samples;
BigEditTextActivityNonScrollableResizeTests.java 17 package com.android.imftest.samples;
BigEditTextActivityScrollablePanScanTests.java 17 package com.android.imftest.samples;
BigEditTextActivityScrollableResizeTests.java 17 package com.android.imftest.samples;
BottomEditTextActivityPanScanTests.java 17 package com.android.imftest.samples;
BottomEditTextActivityResizeTests.java 17 package com.android.imftest.samples;
ButtonActivityTest.java 17 package com.android.imftest.samples;
OneEditTextActivityNotSelectedTests.java 17 package com.android.imftest.samples;
OneEditTextActivitySelectedTests.java 17 package com.android.imftest.samples;
  /frameworks/ex/variablespeed/jni/
ring_buffer.h 56 // Reads samples for a reading head.
59 // @param destination float buffer to which the samples will be written.
62 // Writes samples.
63 // @param samples float buffer containing the samples.
65 void Write(const float* samples, int num_frames);
77 // Returns a pointer to num_frames x num_channels contiguous samples for

Completed in 312 milliseconds

1 2 3 4 5 6 78 91011>>