/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
ItsUtils.java | 32 import android.util.Size; 96 public static Size[] getRaw16OutputSizes(CameraCharacteristics ccs) 101 public static Size[] getRaw10OutputSizes(CameraCharacteristics ccs) 106 public static Size[] getRaw12OutputSizes(CameraCharacteristics ccs) 111 public static Size[] getJpegOutputSizes(CameraCharacteristics ccs) 116 public static Size[] getYuvOutputSizes(CameraCharacteristics ccs) 121 public static Size getMaxOutputSize(CameraCharacteristics ccs, int format) 126 private static Size[] getOutputSizes(CameraCharacteristics ccs, int format) 133 Size[] normalSizes = configMap.getOutputSizes(format); 134 Size[] slowSizes = configMap.getHighResolutionOutputSizes(format) [all...] |
/external/llvm/include/llvm/CodeGen/ |
MachineFrameInfo.h | 88 // The size of this object on the stack. 0 means a variable sized object, 90 uint64_t Size; 120 : SPOffset(SP), Size(Sz), Alignment(Al), isImmutable(IM), 169 /// offsets for all of the fixed size objects, updating the Objects list 208 /// This contains the size of the largest call frame if the target uses frame 227 /// Size of the pre-allocated local frame block. 336 int getObjectIndexEnd() const { return (int)Objects.size()-NumFixedObjects; } 342 unsigned getNumObjects() const { return Objects.size(); } 352 assert (i >= 0 && (unsigned)i < LocalFrameObjects.size() && 358 int64_t getLocalFrameObjectCount() const { return LocalFrameObjects.size(); } [all...] |
/packages/apps/Nfc/nci/jni/extns/pn54x/src/ |
phNxpExtns.c | 129 msg.Size = buflen; 147 ** of the NDEF attributes (NDEF total memory size, current 148 ** size, etc.). 162 msg.Size = 0; 195 msg.Size = 0; 225 msg.Size = 0; 268 msg.Size = len; 303 msg.Size = len; 336 msg.Size = len; 366 msg.Size = 0 [all...] |
/external/llvm/include/llvm/ADT/ |
BitVector.h | 33 "Unsupported word size"); 36 unsigned Size; // Size of bitvector in bits. 78 BitVector() : Size(0), Capacity(0) { 84 explicit BitVector(unsigned s, bool t = false) : Size(s) { 93 BitVector(const BitVector &RHS) : Size(RHS.size()) { 94 if (Size == 0) { 100 Capacity = NumBitWords(RHS.size()); 106 : Bits(RHS.Bits), Size(RHS.Size), Capacity(RHS.Capacity) 118 size_type size() const { return Size; } function in class:llvm::BitVector [all...] |
/external/llvm/include/llvm/MC/ |
MCELFStreamer.h | 54 void EmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, 63 void EmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, 67 uint64_t Size = 0, unsigned ByteAlignment = 0) override; 68 void EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, uint64_t Size, 70 void EmitValueImpl(const MCExpr *Value, unsigned Size,
|
/external/opencv3/modules/imgproc/perf/opencl/ |
perf_pyramid.cpp | 63 const Size srcSize = get<0>(params); 65 const Size dstSize((srcSize.height + 1) >> 1, (srcSize.width + 1) >> 1); 87 const Size srcSize = get<0>(params); 89 const Size dstSize(srcSize.height << 1, srcSize.width << 1); 111 const Size srcSize = get<0>(params);
|
/external/opencv3/modules/videostab/include/opencv2/videostab/ |
motion_stabilizing.hpp | 64 //! assumes that [0, size-1) is in or equals to [range.first, range.second) 66 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 77 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 93 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 125 void setFrameSize(Size val) { frameSize_ = val; } 126 Size frameSize() const { return frameSize_; } 144 int size, const std::vector<Mat> &motions, std::pair<int,int> range, 149 Size frameSize_; 165 CV_EXPORTS Mat ensureInclusionConstraint(const Mat &M, Size size, float trimRatio) [all...] |
/packages/apps/Camera2/src/com/android/camera/captureintent/resource/ |
ResourceOpenedCameraImpl.java | 28 import com.android.camera.util.Size; 45 /** The desired picture size. */ 46 private final Size mPictureSize; 61 Size pictureSize, 73 Size pictureSize, 112 public Size getPictureSize() {
|
/packages/apps/Camera2/src/com/android/camera/data/ |
PhotoDataFactory.java | 25 import com.android.camera.util.Size; 46 Size dimensions; 62 dimensions = new Size(width, height); 89 private Size decodeBitmapDimensions(String filePath) { 114 Log.w(TAG, "PhotoData skipped. Bitmap size 0 for " + filePath); 119 return new Size(width, height);
|
SessionItem.java | 28 import com.android.camera.util.Size; 58 Size dimension = getSessionSize(uri); 65 protected SessionItem(Context context, Uri uri, Size dimension) { 84 private static Size getSessionSize(Uri uri) { 85 Point size = Storage.getSizeForSession(uri); local 86 if (size == null) { 89 return new Size(size); 144 Size dimension = getSessionSize(mData.getUri()); 183 public Size getDimensions() [all...] |
/packages/apps/Camera2/src/com/android/camera/one/ |
OneCameraCaptureSetting.java | 28 import com.android.camera.util.Size; 36 private final Size mCaptureSize; 43 Size pictureSize, 68 Size captureSize, 80 public Size getCaptureSize() {
|
/external/opencv3/modules/cudalegacy/test/ |
test_calib3d.cpp | 68 cv::Mat src = randomMat(cv::Size(1000, 1), CV_32FC3, 0, 10); 69 cv::Mat rvec = randomMat(cv::Size(3, 1), CV_32F, 0, 1); 70 cv::Mat tvec = randomMat(cv::Size(3, 1), CV_32F, 0, 1); 75 ASSERT_EQ(src.size(), dst.size()); 116 cv::Mat src = randomMat(cv::Size(1000, 1), CV_32FC3, 0, 10); 117 cv::Mat rvec = randomMat(cv::Size(3, 1), CV_32F, 0, 1); 118 cv::Mat tvec = randomMat(cv::Size(3, 1), CV_32F, 0, 1); 119 cv::Mat camera_mat = randomMat(cv::Size(3, 3), CV_32F, 0.5, 1); 134 ASSERT_EQ(dst_gold.size(), static_cast<size_t>(dst.cols)) [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
ObjCContainersChecker.cpp | 47 void addSizeInfo(const Expr *Array, const Expr *Size, 66 void ObjCContainersChecker::addSizeInfo(const Expr *Array, const Expr *Size, 69 SVal SizeV = State->getSVal(Size, C.getLocationContext()); 91 // Add array size information to the state. 117 // Retrieve the size. 125 const DefinedSVal *Size = State->get<ArraySizeMap>(ArraySym); 127 if (!Size) 137 // Now, check if 'Idx in [0, Size-1]'. 139 ProgramStateRef StInBound = State->assumeInBound(Idx, *Size, true, T); 140 ProgramStateRef StOutBound = State->assumeInBound(Idx, *Size, false, T) [all...] |
/external/compiler-rt/lib/sanitizer_common/ |
sanitizer_quarantine.h | 31 uptr size; member in struct:__sanitizer::QuarantineBatch 40 // void *cb.Allocate(uptr size); 51 void Init(uptr size, uptr cache_size) { 52 atomic_store(&max_size_, size, memory_order_release); 53 atomic_store(&min_size_, size / 10 * 9, 54 memory_order_release); // 90% of max size. 60 void Put(Cache *c, Callback cb, Node *ptr, uptr size) { 61 c->Enqueue(cb, ptr, size); 62 if (c->Size() > max_cache_size_) 71 if (cache_.Size() > GetSize() && recycle_mutex_.TryLock() [all...] |
/external/llvm/lib/Target/Mips/ |
MipsAnalyzeImmediate.cpp | 50 uint64_t MaskedImm = Imm & (0xffffffffffffffffULL >> (64 - Size)); 89 if ((Seq.size() < 2) || (Seq[0].Opc != ADDiu) || 113 assert(S->size() <= 7); 115 if (S->size() < ShortestLength) { 117 ShortestLength = S->size(); 126 &MipsAnalyzeImmediate::Analyze(uint64_t Imm, unsigned Size, 128 this->Size = Size; 130 if (Size == 32) { 146 GetInstSeqLsADDiu(Imm, Size, SeqLs) [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zFolderOutStream.cpp | 50 _rem = fi.Size;
76 while (_currentIndex < _extractStatuses->Size() && _db->Files[_startIndex + _currentIndex].Size == 0)
84 STDMETHODIMP CFolderOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
88 while (size != 0)
92 UInt32 cur = size < _rem ? size : (UInt32)_rem;
97 size -= cur;
111 if (_currentIndex == _extractStatuses->Size())
115 *processedSize += size;
[all...] |
/external/opencv3/modules/calib3d/include/opencv2/ |
calib3d.hpp | 389 @param dABdA First output derivative matrix d(A\*B)/dA of size 391 @param dABdB Second output derivative matrix d(A\*B)/dB of size 581 @param imageSize Image size in pixels used to initialize the principal point. 591 Size imageSize, double aspectRatio = 1.0 ); [all...] |
/external/opencv3/modules/core/misc/java/test/ |
RectTest.java | 5 import org.opencv.core.Size; 115 Size sz = new Size(3, 1); 143 Size s1 = new Size(0, 0); 144 assertEquals(s1, r.size()); 146 Size s2 = new Size(10, 10); 147 assertEquals(s2, rect.size());
|
/external/opencv3/modules/core/test/ocl/ |
test_dft.cpp | 65 PARAM_TEST_CASE(Dft, cv::Size, OCL_FFT_TYPE, MatDepth, bool, bool, bool, bool) 67 cv::Size dft_size; 123 double eps = src.size().area() * 1e-4; 146 Size srcRoiSize = randomSize(1, MAX_VALUE); 178 OCL_INSTANTIATE_TEST_CASE_P(Core, Dft, Combine(Values(cv::Size(45, 72), cv::Size(36, 36), cv::Size(512, 1), cv::Size(1280, 768)),
|
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/ |
warpers.hpp | 75 @param src_size Source image size 82 virtual Rect buildMaps(Size src_size, InputArray K, InputArray R, OutputArray xmap, OutputArray ymap) = 0; 104 @param dst_size Backward-projected image size 108 Size dst_size, OutputArray dst) = 0; 116 virtual Rect warpRoi(Size src_size, InputArray K, InputArray R) = 0; 146 Rect buildMaps(Size src_size, InputArray K, InputArray R, OutputArray xmap, OutputArray ymap); 152 Size dst_size, OutputArray dst); 154 Rect warpRoi(Size src_size, InputArray K, InputArray R); 162 virtual void detectResultRoi(Size src_size, Point &dst_tl, Point &dst_br); 166 void detectResultRoiByBorder(Size src_size, Point &dst_tl, Point &dst_br) [all...] |
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
expand_unittest.cc | 64 // This is the same size that is given to the SyncBuffer object in NetEq. 97 input_file_.Read(sync_buffer_.Size(), &sync_buffer_.Channel(0)[0])); 120 EXPECT_GT(output.Size(), 0u); 121 sum_output_len_samples += output.Size(); 140 EXPECT_GT(output.Size(), 0u); 141 sum_output_len_samples += output.Size(); 157 EXPECT_GT(output.Size(), 0u); 158 sum_output_len_samples += output.Size();
|
/external/opencv3/modules/core/perf/opencl/ |
perf_arithm.cpp | 59 const Size srcSize = get<0>(params); 83 const Size srcSize = get<0>(params); 105 const Size srcSize = get<0>(params); 126 const Size srcSize = GET_PARAM(0); 147 const Size srcSize = get<0>(params); 167 const Size srcSize = get<0>(params); 188 const Size srcSize = get<0>(params); 209 const Size srcSize = get<0>(params); 230 const Size srcSize = get<0>(params); 253 const Size srcSize = get<0>(params) [all...] |
/external/opencv3/modules/core/perf/ |
perf_arithm.cpp | 15 Size sz = get<0>(GetParam()); 30 Size sz = get<0>(GetParam()); 45 Size sz = get<0>(GetParam()); 60 Size sz = get<0>(GetParam()); 75 Size sz = get<0>(GetParam()); 97 Size sz = get<0>(GetParam()); 119 Size sz = get<0>(GetParam()); 142 Size sz = get<0>(GetParam()); 164 Size sz = get<0>(GetParam()); 186 Size sz = get<0>(GetParam()) [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/ |
CameraTestUtils.java | 53 import android.util.Size; 93 public static final Size SIZE_BOUND_1080P = new Size(1920, 1088); 94 public static final Size SIZE_BOUND_2160P = new Size(3840, 2160); 95 // Only test the preview size that is no larger than 1080p. 96 public static final Size PREVIEW_SIZE_BOUND = SIZE_BOUND_1080P; 168 * @param size The size of this ImageReader to be created. 174 public static ImageReader makeImageReader(Size size, int format, int maxNumImages [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZSelectionDAGInfo.cpp | 22 // a block operation of Size bytes with source address Src and destination 28 SDValue Src, uint64_t Size) { 41 if (Size > 6 * 256) 43 DAG.getConstant(Size, DL, PtrVT), 44 DAG.getConstant(Size / 256, DL, PtrVT)); 46 DAG.getConstant(Size, DL, PtrVT)); 51 SDValue Dst, SDValue Src, SDValue Size, unsigned Align, 58 if (auto *CSize = dyn_cast<ConstantSDNode>(Size)) 65 // Chain, Dst, ByteVal and Size. These cases are expected to use 68 SDValue Dst, uint64_t ByteVal, uint64_t Size, [all...] |