HomeSort by relevance Sort by last modified time
    Searched refs:sizes (Results 426 - 450 of 1150) sorted by null

<<11121314151617181920>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DataConnection.java 812 String sizes = null; local
815 // precise manner which should affect buffer sizes
    [all...]
  /prebuilts/go/darwin-x86/src/go/types/
builtins.go 440 var sizes []int64 // constant integer arguments, if any
443 sizes = append(sizes, s)
446 if len(sizes) == 2 && sizes[0] > sizes[1] {
454 check.recordBuiltinType(call.Fun, makeSig(x.typ, params[:1+len(sizes)]...))
  /prebuilts/go/linux-x86/src/go/types/
builtins.go 440 var sizes []int64 // constant integer arguments, if any
443 sizes = append(sizes, s)
446 if len(sizes) == 2 && sizes[0] > sizes[1] {
454 check.recordBuiltinType(call.Fun, makeSig(x.typ, params[:1+len(sizes)]...))
  /external/libvpx/libvpx/vp8/decoder/
decodeframe.c 731 pbi->fragments.ptrs[0] + pbi->fragments.sizes[0];
743 unsigned int fragment_size = pbi->fragments.sizes[fragment_idx];
749 /* Size of first partition + token partition sizes element */
755 pbi->fragments.sizes[0] = (unsigned int)ext_first_part_size;
760 pbi->fragments.ptrs[0] + pbi->fragments.sizes[0];
769 pbi->fragments.sizes[fragment_idx] = (unsigned int)partition_size;
787 pbi->fragments.sizes[partition_idx], pbi->decrypt_cb,
874 const unsigned int data_sz = pbi->fragments.sizes[0];
    [all...]
  /external/mesa3d/src/gallium/state_trackers/omx/
vid_dec.c 475 priv->sizes[i] = buf->nFilledLen;
484 vl_vlc_init(&vlc, priv->num_in_buffers, priv->inputs, priv->sizes);
523 unsigned delta = MIN2((min_bits_left - vl_vlc_bits_left(&vlc)) / 8, priv->sizes[1]);
526 priv->sizes[0] = priv->sizes[1] - delta;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_reg_allocate.cpp 55 this->alloc.sizes[i - 1]);
170 * Registers of odd sizes simply get rounded up. */
555 unsigned size = this->alloc.sizes[i];
617 int size = alloc.sizes[inst->src[0].nr];
695 hw_reg_mapping[i] + this->alloc.sizes[i]);
869 int size = alloc.sizes[spill_reg];
    [all...]
  /external/python/cpython2/Demo/tkinter/guido/
sortvisu.py 522 sizes = [1, 2, 3, 4] + range(5, 55, 5)
523 if self.size not in sizes:
524 sizes.append(self.size)
525 sizes.sort()
527 (self.botleftframe, self.v_size) + tuple(sizes))
  /external/python/cpython3/Tools/demo/
sortvisu.py 524 sizes = [1, 2, 3, 4] + list(range(5, 55, 5))
525 if self.size not in sizes:
526 sizes.append(self.size)
527 sizes.sort()
528 self.m_size = OptionMenu(self.botleftframe, self.v_size, *sizes)
  /cts/apps/CameraITS/tests/scene4/
test_aspect_ratio_and_crop.py 142 different formats ("jpeg" and "yuv") and sizes.
153 # available sizes of "iter", and only use the size specified for "cmpr"
154 # Do single-capture to cover untouched sizes in multi-capture when needed.
273 # Take pictures of each settings with all the image sizes available.
280 sizes = its.objects.get_available_output_sizes(
282 if not sizes: # device might not support RAW
284 size_cmpr = 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;
394 for (Camera.Size size : sizes) {
  /cts/tests/camera/src/android/hardware/camera2/cts/
RobustnessTest.java 169 * Tables for maximum sizes to try for each hardware level and capability.
265 // Find the concrete max sizes for each format/resolution combination
1843 Size[] sizes = mAllStaticInfo.get(physicalId).getAvailableSizesForFormatChecked( local
2062 List<Size> sizes = new ArrayList<Size>(); local
    [all...]
  /cts/tests/framework/base/windowmanager/src/android/server/wm/
CrossAppDragAndDropTests.java 311 final String[] sizes = output.split(" ")[2].split("x"); local
312 return new Point(Integer.valueOf(sizes[0].trim()), Integer.valueOf(sizes[1].trim()));
  /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...]
  /external/tensorflow/tensorflow/core/kernels/hexagon/
hexagon_control_wrapper.cc 231 int sizes[MAX_IN_OUT_COUNT]; local
234 sizes[i] = size;
236 void* outputs_ptr = soc_interface_SetOneNodeOutputs(count, sizes);
  /frameworks/av/media/libstagefright/webm/
WebmWriter.cpp 498 uint64_t sizes[nElems]; local
507 sizes[i] = e->mSize;
514 mInfoSize = sizes[3];
  /frameworks/base/core/java/android/hardware/camera2/legacy/
ParameterUtils.java 243 * Convert a camera API1 list of sizes into a util list of sizes
248 List<Size> sizes = new ArrayList<>(sizeList.size()); local
250 sizes.add(new Size(s.width, s.height));
252 return sizes;
256 * Convert a camera API1 list of sizes into an array of sizes
270 * Check if the camera API1 list of sizes contains a size with the given dimens.
448 // Sizes are sorted largest-to-smallest, so once the available crop is too small,
    [all...]
  /hardware/libhardware/modules/camera/3_4/
v4l2_wrapper.cpp 332 HAL_LOGE("Failed to get frame sizes for format: 0x%x", pixel_format);
381 std::set<std::array<int32_t, 2>>* sizes) {
390 // Discrete: enumerate all sizes using VIDIOC_ENUM_FRAMESIZES.
391 // Assuming that a driver with discrete frame sizes has a reasonable number
394 sizes->insert({{{static_cast<int32_t>(size_query.discrete.width),
406 // Fully listing all possible sizes, with large enough range/small enough
407 // step size, may produce far too many potential sizes. Instead, find the
408 // closest to a set of standard sizes.
436 sizes->insert(
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
CameraManager.java 693 final List<Camera.Size> sizes = local
698 // Sort the sizes so the best size is first
700 sizes,
703 return sizes.get(0);
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorMorphing.h 206 template<typename StartIndices, typename Sizes, typename XprType>
207 struct traits<TensorSlicingOp<StartIndices, Sizes, XprType> > : public traits<XprType>
219 template<typename StartIndices, typename Sizes, typename XprType>
220 struct eval<TensorSlicingOp<StartIndices, Sizes, XprType>, Eigen::Dense>
222 typedef const TensorSlicingOp<StartIndices, Sizes, XprType>& type;
225 template<typename StartIndices, typename Sizes, typename XprType>
226 struct nested<TensorSlicingOp<StartIndices, Sizes, XprType>, 1, typename eval<TensorSlicingOp<StartIndices, Sizes, XprType> >::type>
228 typedef TensorSlicingOp<StartIndices, Sizes, XprType> type;
235 template<typename StartIndices, typename Sizes, typename XprType
251 const Sizes& sizes() const { return m_sizes; } function in class:Eigen::TensorSlicingOp
    [all...]
  /art/libartbase/base/
hash_set_test.cc 338 std::vector<size_t> sizes = {1, 10, 25, 55, 128, 1024, 4096}; local
339 for (size_t size : sizes) {
  /art/test/906-iterate-heap/
iterate_heap.cc 118 jlongArray sizes,
144 ScopedLongArrayRW s_sizes(env, sizes);
  /build/make/target/board/generic/
BoardConfig.mk 64 # ~100 MB vendor image. Please adjust system image / vendor image sizes
  /build/make/target/board/generic_x86/
BoardConfig.mk 53 # ~100 MB vendor image. Please adjust system image / vendor image sizes
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/iobench/
iobench.py 49 def with_sizes(*sizes):
51 f.file_sizes = sizes
  /external/clang/lib/Sema/
MultiplexExternalSemaSource.cpp 174 getMemoryBufferSizes(MemoryBufferSizes &sizes) const {
176 Sources[i]->getMemoryBufferSizes(sizes);

Completed in 842 milliseconds

<<11121314151617181920>>