HomeSort by relevance Sort by last modified time
    Searched full:samples (Results 151 - 175 of 1585) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/skia/src/utils/unix/
SkEGLContext_Unix.cpp 86 // Pick the FB config/visual with the most samples per pixel
94 int samp_buf, samples; local
96 glXGetFBConfigAttrib(display, fbc[i], GLX_SAMPLES, &samples);
99 // " SAMPLES = %d\n",
100 // i, (unsigned int)vi->visualid, samp_buf, samples);
102 if (best_fbc < 0 || (samp_buf && samples > best_num_samp))
103 best_fbc = i, best_num_samp = samples;
104 if (worst_fbc < 0 || !samp_buf || samples < worst_num_samp)
105 worst_fbc = i, worst_num_samp = samples;
  /external/speex/libspeex/
cb_search.h 58 int nsf, /* number of samples in subframe */
70 int nsf, /* number of samples in subframe */
84 int nsf, /* number of samples in subframe */
97 int nsf, /* number of samples in subframe */
  /frameworks/base/opengl/tests/angeles/
app-linux.cpp 121 static int initGraphics(unsigned samples)
125 EGL_SAMPLE_BUFFERS, samples ? 1 : 0,
126 EGL_SAMPLES, samples,
169 if (samples == 0) {
189 unsigned samples = 0; local
190 printf("usage: %s [samples]\n", argv[0]);
192 samples = atoi( argv[1] );
193 printf("Multisample enabled: GL_SAMPLES = %u\n", samples);
196 if (!initGraphics(samples))
  /external/protobuf/gtest/
Makefile.in 42 TESTS = samples/sample1_unittest$(EXEEXT) \
43 samples/sample2_unittest$(EXEEXT) \
44 samples/sample3_unittest$(EXEEXT) \
45 samples/sample4_unittest$(EXEEXT) \
46 samples/sample5_unittest$(EXEEXT) \
47 samples/sample6_unittest$(EXEEXT) \
48 samples/sample7_unittest$(EXEEXT) \
49 samples/sample8_unittest$(EXEEXT) \
50 samples/sample9_unittest$(EXEEXT) \
51 samples/sample10_unittest$(EXEEXT)
    [all...]
  /external/oprofile/pp/
opannotate.cpp 43 scoped_ptr<profile_container> samples; member in namespace:__anon8967
86 return samples->find_symbol(image_name, vma);
101 << "Output annotated source file with samples" << '\n';
105 << "Output files where samples count reach "
106 << options::threshold << "% of the samples\n";
112 << "Output annotated assembly listing with samples"
173 if (samp_it != samples->end())
189 string str = count_str(sample->counts, samples->samples_count());
196 if (samp_it != samples->end())
227 sample_entry * prev_sample = (sample_entry *)samples-
    [all...]
  /external/qemu/audio/
audio.c 803 int samples, struct mixeng_volume *vol)
807 (void) samples;
956 if (audio_bug (AUDIO_FUNC, live < 0 || live > hw->samples)) {
957 dolog ("live=%d hw->samples=%d\n", live, hw->samples);
966 int left = hw->samples - pending;
973 int samples_till_end_of_buf = hw->samples - hw->rpos;
978 hw->rpos = (hw->rpos + samples_to_clip) % hw->samples;
994 if (audio_bug (AUDIO_FUNC, live < 0 || live > hw->samples)) {
995 dolog ("live=%d hw->samples=%d\n", live, hw->samples)
1011 int samples, live, ret = 0, swlim, isamp, osamp, rpos, total = 0; local
1108 int hwsamples, samples, isamp, osamp, wpos, live, dead, left, swlim, blck; local
    [all...]
paaudio.c 66 int samples; member in struct:__anon9331
72 .samples = 1024,
93 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
125 int chunk = audio_MIN (to_mix, hw->samples - rpos);
136 rpos = (rpos + chunk) % hw->samples;
188 threshold = conf.divisor ? hw->samples / conf.divisor : 0;
220 int chunk = audio_MIN (to_grab, hw->samples - wpos);
230 wpos = (wpos + chunk) % hw->samples;
258 dead = hw->samples - live;
355 hw->samples = conf.samples
    [all...]
  /external/speex/include/speex/
speex_resampler.h 160 * @param in_len Number of input samples in the input buffer. Returns the
161 * number of samples processed
163 * @param out_len Size of the output buffer. Returns the number of samples written
177 * @param in_len Number of input samples in the input buffer. Returns the number
178 * of samples processed
180 * @param out_len Size of the output buffer. Returns the number of samples written
192 * @param in_len Number of input samples in the input buffer. Returns the number
193 * of samples processed. This is all per-channel.
195 * @param out_len Size of the output buffer. Returns the number of samples written.
207 * @param in_len Number of input samples in the input buffer. Returns the numbe
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Framebuffer.cpp 273 // If the framebuffer is not complete, attachment samples may be mismatched, and it
275 // have a color attachment, and all its attachments must have the same number of samples,
276 // so the number of samples for the colorbuffer will indicate whether the framebuffer is
292 int samples = -1; local
337 samples = colorbuffer->getSamples();
376 if (samples == -1)
378 samples = depthbuffer->getSamples();
380 else if (samples != depthbuffer->getSamples())
415 if (samples == -1)
417 samples = stencilbuffer->getSamples()
    [all...]
  /frameworks/base/
Android.mk 393 sample_dir := development/samples
395 # the list here should match the list of samples included in the sdk samples package
400 resources/samples/AccelerometerPlay "Accelerometer Play" \
402 resources/samples/ActionBarCompat "Action Bar Compatibility" \
404 resources/samples/AndroidBeamDemo "Android Beam Demo" \
406 resources/samples/ApiDemos "API Demos" \
408 resources/samples/Support4Demos "API 4+ Support Demos" \
410 resources/samples/Support13Demos "API 13+ Support Demos" \
412 resources/samples/BackupRestore "Backup and Restore"
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
SampleSelectionPage.java 107 // Update samples list if the SDK target has changed (or if it hasn't yet
148 if (mValues.samples != null && mValues.samples.size() > 0) {
149 Object[] samples = mValues.samples.toArray(); local
150 mTableViewer.setInput(samples);
153 selectSample(mValues.samples.get(0));
237 // Ensure that when creating samples, the Finish button isn't enabled until
248 if (mValues.samples == null || mValues.samples.size() == 0)
    [all...]
SdkSelectionPage.java 183 * Updates the list of all samples for the given target SDK.
188 // Keep the name of the old selection (if there were any samples)
191 mValues.samples.clear();
195 // Get the sample root path and recompute the list of samples
196 String samplesRootPath = target.getPath(IAndroidTarget.SAMPLES);
199 findSamplesManifests(mValues.samplesDir, mValues.samples);
201 if (mValues.samples.size() == 0) {
204 Collections.sort(mValues.samples);
211 for (int i = 0, n = mValues.samples.size(); i < n; i++) {
212 File file = mValues.samples.get(i)
    [all...]
  /frameworks/base/docs/html/resources/
resources-data.js 392 path: 'samples/AccelerometerPlay/index.html',
402 path: 'samples/ActionBarCompat/index.html',
412 path: 'samples/AndroidBeamDemo/index.html',
422 path: 'samples/ApiDemos/index.html',
432 path: 'samples/Support4Demos/index.html',
442 path: 'samples/Support13Demos/index.html',
452 path: 'samples/BackupRestore/index.html',
462 path: 'samples/BluetoothChat/index.html',
472 path: 'samples/BusinessCard/index.html',
482 path: 'samples/ContactManager/index.html'
    [all...]
  /development/sdk/
support_README.txt 20 v4/samples/ provides a sample app using the library.
29 v13/samples/ provides a sample app using the library.
  /external/chromium/chrome/common/extensions/docs/static/
contextMenus.html 48 You can find samples of this API on the
49 <a href="samples.html#contextMenus">sample page</a>.
tabs.html 45 <a href="samples.html">Samples</a>.
  /external/oprofile/doc/
opgprof.1.in 47 of total samples.
58 .I /var/lib/oprofile/samples/
  /external/oprofile/libop/
op_config.c 43 if (session_dir_len + strlen("/samples/oprofiled.log") > PATH_MAX) {
52 strcat(op_samples_dir, "/samples/");
  /external/skia/src/images/
SkScaledBitmapSampler.h 43 int fDX; // step between X samples
44 int fDY; // step between Y samples
  /frameworks/base/media/libeffects/lvm/lib/Bass/src/
LVDBE_Process.c 60 /* NumSamples Number of samples in the input buffer */
95 * Check the number of samples is not too large
112 * Convert 16-bit samples to 32-bit and scale
129 (LVM_INT16)NumSamples); /* Number of samples */
138 (LVM_INT16)NumSamples); /* Number of samples */
147 (LVM_INT16)NumSamples); /* Number of samples */
157 NumSamples); /* Number of samples */
160 * Convert 32-bit samples to 16-bit and saturate
  /ndk/build/tools/
gen-platforms.sh 100 --samples)
130 echo " --minimal Ignore samples, symlinks and generated shared libs."
132 echo " --samples Also generate samples directories."
251 # $3: description of directory contents (e.g. "sysroot" or "samples")
421 # Copy platform sysroot and samples into your destination
432 # $SRC/android-$PLATFORM/samples --> $DST/samples
474 # Copy platform samples and generic samples into your destinatio
    [all...]
  /packages/apps/Music/src/com/android/music/
IMediaPlaybackService.aidl 1 /* //device/samples/SampleCode/src/com/android/samples/app/RemoteServiceInterface.java
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
ainstr_gf1.h 62 unsigned int size; /* size of waveform in samples */
63 unsigned int start; /* start offset in samples * 16 (lowest 4 bits - fraction) */
64 unsigned int loop_start; /* bits loop start offset in samples * 16 (lowest 4 bits - fraction) */
65 unsigned int loop_end; /* loop start offset in samples * 16 (lowest 4 bits - fraction) */
141 __u32 size; /* size of waveform in samples */
142 __u32 start; /* start offset in samples * 16 (lowest 4 bits - fraction) */
143 __u32 loop_start; /* bits loop start offset in samples * 16 (lowest 4 bits - fraction) */
144 __u32 loop_end; /* loop start offset in samples * 16 (lowest 4 bits - fraction) */
  /external/libgsm/src/
code.c 31 word * s, /* [0..159] samples IN */
35 * the frame is equal to 160 samples. Some computations are done
39 * frame (160 samples of signal d[0..159]). These parts produce at
48 * 40 samples. These parts produce at the output of the coder:
55 word * xMc /* [13*4] normalized RPE samples OUT */
  /external/opencv/ml/src/
mlknearest.cpp 50 samples = 0;
64 samples = 0;
71 while( samples )
73 CvVectors* next_samples = samples->next;
74 cvFree( &samples->data.fl );
75 cvFree( &samples );
76 samples = next_samples;
132 _samples->next = samples;
138 samples = _samples;
154 CvVectors* s = samples;
    [all...]

Completed in 569 milliseconds

1 2 3 4 5 67 8 91011>>