/external/chromium_org/third_party/webrtc/system_wrappers/source/ |
data_log_unittest.cc | 136 uint32_t sizes[5] = {1400, 1500, 1600, 1700, 1800}; local 142 DataLog::InsertCell(DataLog::Combine("table", 1), "size", sizes, 5);
|
/external/chromium_org/tools/deep_memory_profiler/ |
accumulate.py | 232 for unit_id, sizes in snapshot['worlds'][world_name]['units'].iteritems(): 233 world_units[int(unit_id)] = sizes[0]
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
ItsSerializer.java | 135 Size sizes[] = map.getOutputSizes(fmts[fi]); local 136 if (sizes != null) { 137 for (int si = 0; si < Array.getLength(sizes); si++) { 140 obj.put("width",sizes[si].getWidth()); 141 obj.put("height", sizes[si].getHeight()); 144 map.getOutputMinFrameDuration(fmts[fi],sizes[si])); [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/helpers/ |
CameraMetadataGetter.java | 311 Size sizes[] = map.getOutputSizes(fmts[fi]); local 312 if (sizes != null) { 313 for (int si = 0; si < Array.getLength(sizes); si++) { 316 obj.put("width", sizes[si].getWidth()); 317 obj.put("height", sizes[si].getHeight()); 320 map.getOutputMinFrameDuration(fmts[fi], sizes[si]));
|
StaticMetadata.java | 502 * Get available thumbnail sizes and do the sanity check. 504 * @return The array of available thumbnail sizes 508 Size[] sizes = getValueFromKeyNonNull(key); local 509 final List<Size> sizeList = Arrays.asList(sizes); 520 checkTrueForKey(key, "Sizes should be in ascending order: Original " + sizeList.toString() 526 return sizes; 1143 Size[] sizes = new Size[utilSizes.length]; local [all...] |
/external/chromium_org/net/disk_cache/blockfile/ |
rankings.cc | 911 DCHECK(control_data_->sizes[list] < kint32max); 912 if (control_data_->sizes[list] < kint32max) 913 control_data_->sizes[list]++; 920 DCHECK(control_data_->sizes[list] > 0); 921 if (control_data_->sizes[list] > 0) 922 control_data_->sizes[list]--;
|
backend_impl.cc | 1004 data_->header.lru.sizes[0] * 100 / data_->header.num_entries); 1006 data_->header.lru.sizes[1] * 100 / data_->header.num_entries); 1008 data_->header.lru.sizes[2] * 100 / data_->header.num_entries); [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/resources/ |
runner.js | 293 // Smaller chunk sizes will show more samples in style resolution. 294 // Larger chunk sizes will show more samples in line layout. 295 // Smaller chunk sizes run slower overall, as the per-chunk overhead is high.
|
/external/compiler-rt/lib/sanitizer_common/tests/ |
sanitizer_allocator_test.cc | 84 static const uptr sizes[] = {1, 16, 30, 40, 100, 1000, 10000, local 92 for (uptr s = 0; s < ARRAY_SIZE(sizes); s++) { 93 uptr size = sizes[s]; 663 static const uptr sizes[] = {1, 16, 30, 40, 100, 1000, 10000, local 669 for (uptr s = 0; s < ARRAY_SIZE(sizes); s++) { 670 uptr size = sizes[s];
|
/external/chromium_org/mojo/public/python/mojo/ |
system.pyx | 160 def __getsegcount__(self, Py_ssize_t *sizes): 162 if sizes != NULL: 163 sizes[0] = self._size 382 This method returns a triplet of value (code, data, sizes): 383 - if code is RESULT_OK, sizes will be None, and data will be a pair of 386 - if code is RESULT_RESOURCE_EXHAUSTED, data will be None and sizes will be 390 - if code is any other value, data and sizes will be None.
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/decoder/ |
decodeframe.c | 830 pbi->fragments.sizes[0]; 842 unsigned int fragment_size = pbi->fragments.sizes[fragment_idx]; 849 /* Size of first partition + token partition sizes element */ 855 pbi->fragments.sizes[0] = (unsigned int)ext_first_part_size; 860 pbi->fragments.sizes[0]; 874 pbi->fragments.sizes[fragment_idx] = (unsigned int)partition_size; 894 pbi->fragments.sizes[partition_idx], [all...] |
/external/libvpx/libvpx/vp8/decoder/ |
decodeframe.c | 821 pbi->fragments.sizes[0]; 833 unsigned int fragment_size = pbi->fragments.sizes[fragment_idx]; 840 /* Size of first partition + token partition sizes element */ 846 pbi->fragments.sizes[0] = (unsigned int)ext_first_part_size; 851 pbi->fragments.sizes[0]; 865 pbi->fragments.sizes[fragment_idx] = (unsigned int)partition_size; 885 pbi->fragments.sizes[partition_idx], [all...] |
/external/libvpx/libvpx/vp8/ |
vp8_dx_iface.c | 323 /* New frame, reset fragment pointers and sizes */ 325 vpx_memset(ctx->fragments.sizes, 0, sizeof(ctx->fragments.sizes)); 333 ctx->fragments.sizes[ctx->fragments.count] = data_sz; 347 ctx->fragments.sizes[0] = data_sz; 376 res = vp8_peek_si_internal(ctx->fragments.ptrs[0], ctx->fragments.sizes[0],
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/ |
CameraOrientationActivity.java | 378 private Camera.Size getOptimalPreviewSize(List<Camera.Size> sizes, int w, 382 if (sizes == null) return null; 393 for (Camera.Size size : sizes) {
|
/external/chromium_org/media/formats/mp4/ |
track_run_iterator.cc | 280 const std::vector<uint8>& sizes = local 283 sizes.begin() + sample_count_sum, 284 sizes.begin() + sample_count_sum + trun.sample_count); 288 // info block from it, otherwise sum over the individual sizes of each
|
/external/chromium_org/third_party/skia/src/ports/ |
SkFontConfigInterface_direct.cpp | 593 SkTDArray<size_t> sizes; local 599 *sizes.append() = strlen(famName) + 1; 604 sizes.begin(), names.count());
|
/external/opencv/cv/src/ |
cvhistogram.cpp | 45 cvCreateHist( int dims, int *sizes, CvHistType type, float** ranges, int uniform ) 55 if( !sizes ) 56 CV_ERROR( CV_HeaderIsNull, "Null <sizes> pointer" ); 65 CV_CALL( hist->bins = cvInitMatNDHeader( &hist->mat, dims, sizes, 71 CV_CALL( hist->bins = cvCreateSparseMat( dims, sizes, CV_HIST_DEFAULT_TYPE )); 92 cvMakeHistHeaderForArray( int dims, int *sizes, CvHistogram *hist, 109 CV_CALL( hist->bins = cvInitMatNDHeader( &hist->mat, dims, sizes, 429 CV_ERROR( CV_StsUnmatchedSizes, "The histograms have different sizes" ); 2385 int sizes[CV_MAX_DIM]; local 2462 int sizes[CV_MAX_DIM]; local [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
StaticMetadataTest.java | 483 Size[] sizes = CameraTestUtils.getSupportedSizeForFormat(ImageFormat.YUV_420_888, local 485 Size maxSize = CameraTestUtils.getMaxSize(sizes);
|
/external/chromium_org/gpu/command_buffer/service/ |
gles2_cmd_decoder_unittest_attribs.cc | 148 static const GLsizei sizes[] = { local 168 GLsizei num_bytes = sizes[tt];
|
/external/chromium_org/mojo/public/python/mojo/bindings/ |
messaging.py | 376 (result, _, sizes) = handle.ReadMessage() 381 (result, data, _) = handle.ReadMessage(bytearray(sizes[0]))
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_ycbcr_texture.spec | 128 sizes will return zero. The YCbCr colors are converted to RGB during
|
/external/clang/lib/Sema/ |
MultiplexExternalSemaSource.cpp | 170 getMemoryBufferSizes(MemoryBufferSizes &sizes) const { 172 Sources[i]->getMemoryBufferSizes(sizes);
|
/external/llvm/lib/DebugInfo/ |
DWARFFormValue.cpp | 31 static const uint8_t sizes[] = { local 59 return makeArrayRef(sizes);
|
/external/mesa3d/docs/ |
MESA_ycbcr_texture.spec | 128 sizes will return zero. The YCbCr colors are converted to RGB during
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_vs_constval.c | 143 /* Examine vertex program output sizes to set the size_masks[] info 144 * which describes the fragment program input sizes. 176 GLuint sizes_dword = brw->vb.info.sizes[attr/16]; 182 /* Calculate sizes of vertex program outputs. Size is the largest
|