HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 326 - 350 of 541) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/leveldatabase/src/db/
c_test.c 282 uint64_t sizes[2]; local
295 leveldb_approximate_sizes(db, 2, start, start_len, limit, limit_len, sizes);
296 CheckCondition(sizes[0] > 0);
297 CheckCondition(sizes[1] > 0);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_draw.c 281 brw->vb.info.sizes[i/16] |= (brw->vb.inputs[i].glarray->Size - 1) <<
285 /* Raise statechanges if input sizes have changed. */
286 if (memcmp(brw->vb.info.sizes, old.sizes, sizeof(old.sizes)) != 0)
  /external/clang/include/clang/Sema/
MultiplexExternalSemaSource.h 196 virtual void getMemoryBufferSizes(MemoryBufferSizes &sizes) const;
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 352 const size_t sizes[] = { 1, 30, 1<<30 }; local
354 EXPECT_EQ(sizes[i], __asan_get_estimated_allocated_size(sizes[i]));
698 // Same here, but we run memset with small sizes.
744 std::vector<size_t> sizes; local
749 sizes.push_back(size);
756 EXPECT_EQ(sizes[idx], __asan_get_allocated_size(pointers[idx]));
780 size_t sizes[] = {16, 1000, 10000, 100000, 2100000}; local
781 for (size_t s = 0; s < ARRAY_SIZE(sizes); s++) {
782 size_t size = sizes[s]
    [all...]
  /external/eigen/unsupported/test/mpreal/
dlmalloc.h 282 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
285 chunks with sizes indicated in the "sizes" array. It returns
322 size_t sizes[3] = { sizeof(struct Head), msglen, sizeof(struct Foot) };
324 if (independent_comalloc(3, sizes, chunks) == 0)
428 control the sizes of incremental increases of this space by
517 size_t sizes[], void* chunks[]);
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_draw.c 281 brw->vb.info.sizes[i/16] |= (brw->vb.inputs[i].glarray->Size - 1) <<
285 /* Raise statechanges if input sizes have changed. */
286 if (memcmp(brw->vb.info.sizes, old.sizes, sizeof(old.sizes)) != 0)
  /external/pixman/test/
composite.c 69 static const int sizes[] = variable
395 info->size = sizes[size] & ~FLAGS;
411 if (sizes[size] & REPEAT)
432 return prng_rand_n (ARRAY_LENGTH (sizes));
  /hardware/qcom/camera/
QCameraParameters.h 50 // Supported PREVIEW/RECORDING SIZES IN HIGH FRAME RATE recording, sizes in pixels.
243 void getSupportedHfrSizes(Vector<Size> &sizes) const;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sort.py 43 # Try a variety of sizes at and around powers of 2, and at powers of 10.
44 sizes = [0]
47 sizes.extend(range(n-1, n+2))
48 sizes.extend([10, 100, 1000])
78 for n in sizes:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sort.py 43 # Try a variety of sizes at and around powers of 2, and at powers of 10.
44 sizes = [0]
47 sizes.extend(range(n-1, n+2))
48 sizes.extend([10, 100, 1000])
78 for n in sizes:
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_x86-inl.h 287 // int* sizes: the size of each stack frame, as an array
289 // int max_depth: the size of the result (and sizes) array(s)
367 sizes[n] = (uintptr_t)next_sp - (uintptr_t)sp;
370 sizes[n] = 0;
  /external/stlport/test/eh/
sunpro42.mak 48 echo 'Info: For CC 4.x, warnings from ld in the form "symbol `XXX' has differing sizes" are normal.'
  /packages/apps/Camera/src/com/android/camera/
Util.java 438 List<Size> sizes, double targetRatio) {
441 if (sizes == null) return null;
454 for (Size size : sizes) {
467 for (Size size : sizes) {
479 List<Size> sizes, double targetRatio) {
482 if (sizes == null) return null;
487 for (Size size : sizes) {
499 for (Size size : sizes) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/fov/
PhotoCaptureActivity.java 128 // Stop camera until preview sizes have been obtained.
201 // Get the supported picture sizes and fill the spinner.
359 final List<Camera.Size> sizes = camera.getParameters() local
361 String[] choices = new String[sizes.size()];
362 for (int i = 0; i < sizes.size(); ++i) {
363 Camera.Size size = sizes.get(i);
384 Camera.Size size = sizes.get(which);
  /external/chromium_org/net/disk_cache/
eviction.cc 247 return (!test_mode_ && header_->lru.sizes[Rankings::DELETED] > max_length);
552 header_->lru.sizes[Rankings::DELETED];
554 if (header_->lru.sizes[0] > data_entries / 3)
557 int list = (header_->lru.sizes[1] > data_entries / 3) ? 1 : 2;
564 header_->lru.sizes[0] > data_entries / 10)
  /external/libvpx/libvpx/vp9/
vp9_dx_iface.c 362 uint32_t sizes[8],
385 sizes[i] = this_sz;
401 uint32_t sizes[8]; local
406 parse_superframe_index(data, data_sz, sizes, &frames_this_pts);
428 uint32_t this_sz = sizes[frame_count];
  /external/opencv/cxcore/src/
cxarray.cpp 277 cvInitMatNDHeader( CvMatND* mat, int dims, const int* sizes,
296 if( !sizes )
297 CV_ERROR( CV_StsNullPtr, "NULL <sizes> pointer" );
305 if( sizes[i] <= 0 )
306 CV_ERROR( CV_StsBadSize, "one of dimesion sizes is non-positive" );
307 mat->dim[i].size = sizes[i];
311 step *= sizes[i];
335 cvCreateMatND( int dims, const int* sizes, int type )
343 CV_CALL( arr = cvCreateMatNDHeader( dims, sizes, type ));
357 cvCreateMatNDHeader( int dims, const int* sizes, int type
392 int i, *sizes; local
    [all...]
  /dalvik/vm/compiler/codegen/x86/libenc/
enc_base.cpp 879 sizes[] = {
895 for (unsigned i = 0; i<COUNTOF(sizes); i++) {
896 if (!strcmpi(sizeString, sizes[i].sizeString)) {
897 return sizes[i].size;
904 for( unsigned i = 0; i<COUNTOF(sizes); i++ ) {
905 if( sizes[i].size==size ) {
906 return sizes[i].sizeString;
    [all...]
  /device/asus/flo/camera/QCamera2/HAL/
QCameraParameters.h 55 // Supported PREVIEW/RECORDING SIZES IN HIGH FRAME RATE recording, sizes in pixels.
66 // Supported live snapshot sizes
348 void getSupportedHfrSizes(Vector<Size> &sizes);
506 void parseSizesList(const char *sizesStr, Vector<Size> &sizes);
513 String8 createSizesString(const cam_dimension_t *sizes, int len);
  /external/chromium_org/media/mp4/
track_run_iterator.cc 225 const std::vector<uint8>& sizes = local
228 sizes.begin() + sample_count_sum,
229 sizes.begin() + sample_count_sum + trun.sample_count);
233 // info block from it, otherwise sum over the individual sizes of each
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
vmw_screen_ioctl.c 113 struct drm_vmw_size sizes[DRM_VMW_MAX_SURFACE_FACES* local
139 cur_size = sizes;
158 req->size_addr = (unsigned long)&sizes;
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_screen_ioctl.c 113 struct drm_vmw_size sizes[DRM_VMW_MAX_SURFACE_FACES* local
139 cur_size = sizes;
158 req->size_addr = (unsigned long)&sizes;
  /hardware/qcom/camera/QCamera2/HAL/
QCameraParameters.h 55 // Supported PREVIEW/RECORDING SIZES IN HIGH FRAME RATE recording, sizes in pixels.
66 // Supported live snapshot sizes
348 void getSupportedHfrSizes(Vector<Size> &sizes);
506 void parseSizesList(const char *sizesStr, Vector<Size> &sizes);
513 String8 createSizesString(const cam_dimension_t *sizes, int len);
  /bionic/libc/kernel/arch-arm/asm/arch/
hardware.h 21 #include <asm/sizes.h>
  /bionic/libc/upstream-dlmalloc/
malloc.h 384 independent_comalloc(size_t n_elements, size_t sizes[], void* chunks[]);
387 chunks with sizes indicated in the "sizes" array. It returns
421 size_t sizes[3] = { sizeof(struct Head), msglen, sizeof(struct Foot) };
423 if (independent_comalloc(3, sizes, chunks) == 0)
538 control the sizes of incremental increases of this space by
602 size_t sizes[], void* chunks[]);

Completed in 2015 milliseconds

<<11121314151617181920>>