HomeSort by relevance Sort by last modified time
    Searched full:sample_size (Results 1 - 15 of 15) sorted by null

  /external/bluetooth/glib/tests/
slice-threadinit.c 24 #define SAMPLE_SIZE (7)
55 guint i, j, n_trials = N_PAGES * PAGE_SIZE / SAMPLE_SIZE; /* upper bound */
58 void *b = g_slice_alloc (SAMPLE_SIZE);
84 void *b = g_slice_alloc (SAMPLE_SIZE);
99 release_trash_list (&free_list, SAMPLE_SIZE);
105 release_trash_list (&free_list, SAMPLE_SIZE);
163 release_trash_list (&free_list, SAMPLE_SIZE);
  /frameworks/base/tests/CoreTests/android/core/
ZipFileTest.java 37 private static final int SAMPLE_SIZE = 128 * 1024;
62 byte[] sample = new byte[SAMPLE_SIZE];
69 for (i = 0; i < SAMPLE_SIZE / 256; i++) {
167 assertEquals(SAMPLE_SIZE, totalLen1);
176 assertEquals(SAMPLE_SIZE, totalLen2);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/util/
ASN1Dump.java 46 private static final int SAMPLE_SIZE = 32;
433 for (int i = 0; i < bytes.length; i += SAMPLE_SIZE)
435 if (bytes.length - i > SAMPLE_SIZE)
438 buf.append(new String(Hex.encode(bytes, i, SAMPLE_SIZE)));
440 buf.append(calculateAscString(bytes, i, SAMPLE_SIZE));
447 for (int j = bytes.length - i; j != SAMPLE_SIZE; j++)
  /external/jpeg/
jdapistd.c 246 int sample_size = DCTSIZE / cinfo->min_DCT_scaled_size; local
248 *height = jdiv_round_up(*height, sample_size);
250 cinfo->output_scanline = lines_per_iMCU_row * row_offset / sample_size;
278 int sample_size = DCTSIZE / cinfo->min_DCT_scaled_size; local
284 if (cinfo->output_scanline % (lines_per_iMCU_row / sample_size) == 0) {
287 (lines_per_iMCU_row / sample_size);
jdcoefct.c 466 int sample_size = index->MCU_sample_size * factor; local
469 scan_header->MCUs_per_row = jdiv_round_up(cinfo->MCUs_per_row, sample_size);
517 if (MCU_col_num % sample_size == 0) {
    [all...]
  /external/srec/srec/EventLog/src/
EventLog.c 116 ESR_ReturnCode SR_EventLogAudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size)
123 return self->audioOpen(self, audio_type, sample_rate, sample_size);
EventLogImpl.c 641 ESR_ReturnCode SR_EventLog_AudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size)
665 impl->waveform_bytes_per_sample = sample_size;
  /external/srec/srec/EventLog/include/
SR_EventLog.h 213 * @param sample_size Size of sampling in bytes.
215 ESR_ReturnCode(*audioOpen)(struct SR_EventLog_t* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size);
335 * @param sample_size Size of sampling in bytes.
337 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLogAudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size);
SR_EventLogImpl.h 92 SREC_EVENTLOG_API ESR_ReturnCode SR_EventLog_AudioOpen(SR_EventLog* self, const LCHAR* audio_type, size_t sample_rate, size_t sample_size);
  /frameworks/base/media/libstagefright/
SampleTable.cpp 315 size_t sample_size; local
316 status_t err = getSampleSize_l(i, &sample_size);
322 if (sample_size > *max_size) {
323 *max_size = sample_size;
MPEG4Extractor.cpp 711 uint16_t sample_size = U16_AT(&buffer[18]); local
728 chunk, num_channels, sample_size, sample_rate);
    [all...]
  /frameworks/base/media/libstagefright/include/
SampleTable.h 123 status_t getSampleSize_l(uint32_t sample_index, size_t *sample_size);
  /frameworks/base/core/java/android/view/
MotionEvent.java 273 static private final int SAMPLE_SIZE = 3;
691 history[i + SAMPLE_SIZE] *= scale; // TODO: square this?
797 return mDataSamples[mLastDataSampleIndex + SAMPLE_SIZE];
    [all...]
  /external/srec/srec/Recognizer/src/
RecognizerImpl.c 47 #define SAMPLE_SIZE (16 / CHAR_BIT) /* 16-bits / sample */
    [all...]
  /hardware/ti/omap3/omx/audio/src/openmax_il/g722_enc/tests/
G722EncTest.c 104 #define SAMPLE_SIZE 16
562 pG722Param->nBitsPerSample = SAMPLE_SIZE;
    [all...]

Completed in 866 milliseconds