HomeSort by relevance Sort by last modified time
    Searched refs:Size (Results 301 - 325 of 2560) sorted by null

<<11121314151617181920>>

  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
ScriptYuvMeans1d.java 21 import android.util.Size;
36 private static final Size UNIT_SQUARE = new Size(/*width*/1, /*height*/1);
  /cts/tests/camera/src/android/hardware/cts/helpers/
CameraUtils.java 49 * Shared size comparison method used by size comparators.
65 * Size comparator that compares the number of pixels it covers.
69 public static class LegacySizeComparator implements Comparator<Camera.Size> {
71 public int compare(Camera.Size lhs, Camera.Size rhs) {
  /device/moto/shamu/camera/QCamera2/HAL/test/
qcamera_test.h 56 unsigned Size;
83 status_t getCurrentPreviewSize(Size &previewSize);
86 status_t getCurrentPictureSize(Size &pictureSize);
91 status_t getCurrentVideoSize(Size &videoSize);
187 Size getPreviewSizeFromVideoSizes(Size currentVideoSize);
190 Vector<Size> mSupportedPreviewSizes;
191 Vector<Size> mSupportedPictureSizes;
192 Vector<Size> mSupportedVideoSizes;
283 void setViVSize(Size VideoSize, int camIndex)
    [all...]
  /external/clang/lib/Frontend/
LayoutOverrideSource.cpp 24 while (Offset < S.size() && isIdentifierBody(S[Offset]))
77 // Check for the size of the type.
78 StringRef::size_type Pos = LineStr.find(" Size:");
80 // Skip past the " Size:" prefix.
81 LineStr = LineStr.substr(Pos + strlen(" Size:"));
83 unsigned long long Size = 0;
84 (void)LineStr.getAsInteger(10, Size);
85 CurrentLayout.Size = Size;
101 // Check for the size/alignment of the type
    [all...]
  /external/deqp/framework/common/
tcuSeedBuilder.hpp 44 void feed (size_t size, const void* ptr);
68 template<class T, int Size>
69 SeedBuilder& operator<< (SeedBuilder& builder, const tcu::Vector<T, Size>& value)
71 for (int i = 0; i < Size; i++)
  /external/google-breakpad/src/testing/gtest/samples/
sample5_unittest.cc 174 EXPECT_EQ(0u, q0_.Size());
185 EXPECT_EQ(0u, q1_.Size());
191 EXPECT_EQ(1u, q2_.Size());
  /external/llvm/include/llvm/MC/
MCWin64EH.h 31 static WinEH::Instruction Alloc(MCSymbol *L, unsigned Size) {
32 return WinEH::Instruction(Size > 128 ? UOP_AllocLarge : UOP_AllocSmall, L,
33 -1, Size);
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 21 SDValue Size, unsigned Align, bool isVolatile,
25 ConstantSDNode *SizeValue = dyn_cast<ConstantSDNode>(Size);
30 // For small size (< 256), it is not beneficial to use bzero
42 Entry.Node = Size;
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.h 44 SDValue Size, unsigned Align,
52 SDValue Size, unsigned Align, bool isVolatile,
67 SDValue Size, unsigned Align,
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMUnwindOpAsm.h 66 OpBegins.push_back(OpBegins.back() + Opcodes.size());
85 void EmitBytes(const uint8_t *Opcode, size_t Size) {
86 Ops.insert(Ops.end(), Opcode, Opcode + Size);
87 OpBegins.push_back(OpBegins.back() + Size);
  /external/llvm/lib/Target/Hexagon/
HexagonSelectionDAGInfo.cpp 23 SDValue Dst, SDValue Src, SDValue Size, unsigned Align,
27 ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
35 // Special case aligned memcpys with size >= 32 bytes and a multiple of 8.
45 Entry.Node = Size;
  /external/llvm/tools/lli/
RemoteMemoryManager.cpp 33 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID,
39 sys::MemoryBlock Block = allocateSection(Size);
48 allocateDataSection(uintptr_t Size, unsigned Alignment,
55 sys::MemoryBlock Block = allocateSection(Size);
63 sys::MemoryBlock RemoteMemoryManager::allocateSection(uintptr_t Size) {
65 sys::MemoryBlock MB = sys::Memory::allocateMappedMemory(Size,
95 unsigned NumSections = UnmappedSections.size();
101 unsigned Size = Section.MB.size();
103 DEBUG(dbgs() << "code region: size " << Siz
    [all...]
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 7 STDMETHODIMP CMultiStream::Read(void *data, UInt32 size, UInt32 *processedSize)
11 if (size == 0)
17 unsigned left = 0, mid = _streamIndex, right = Streams.Size();
23 else if (_pos >= m.GlobalOffset + m.Size)
41 UInt64 rem = s.Size - localPos;
42 if (size > rem)
43 size = (UInt32)rem;
44 HRESULT result = s.Stream->Read(data, size, &size);
45 _pos += size;
    [all...]
  /external/opencv3/apps/traincascade/
imagestorage.h 8 bool create( const std::string _posFilename, const std::string _negFilename, cv::Size _winSize );
35 bool create( const std::string _filename, cv::Size _winSize );
46 cv::Size winSize;
  /external/opencv3/modules/core/perf/
perf_sort.cpp 16 typedef tuple<Size, MatType, int> sortParams;
22 const Size sz = get<0>(params);
42 const Size sz = get<0>(params);
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample5_unittest.cc 174 EXPECT_EQ(0u, q0_.Size());
185 EXPECT_EQ(0u, q1_.Size());
191 EXPECT_EQ(1u, q2_.Size());
  /frameworks/base/core/java/android/hardware/camera2/params/
StreamConfiguration.java 27 import android.util.Size;
100 * Convenience method to return the size of this stream configuration.
102 * @return a Size with positive width and height
104 public Size getSize() {
105 return new Size(mWidth, mHeight);
StreamConfigurationDuration.java 26 import android.util.Size;
29 * Immutable class to store a time duration for any given format/size combination.
95 * Convenience method to return the size of this stream configuration duration.
97 * @return a Size with positive width and height
99 public Size getSize() {
100 return new Size(mWidth, mHeight);
144 (int) mDurationNs, (int)(mDurationNs >>> Integer.SIZE));
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
CameraUtils.java 53 * Shared size comparison method used by size comparators.
69 * Size comparator that compares the number of pixels it covers.
73 public static class LegacySizeComparator implements Comparator<Camera.Size> {
75 public int compare(Camera.Size lhs, Camera.Size rhs) {
  /frameworks/compile/mclinker/include/mcld/LD/
Relocator.h 30 typedef Relocation::Size Size;
100 /// getSize - get the size of a relocation in bit
101 virtual Size getSize(Type pType) const = 0;
  /ndk/sources/third_party/googletest/googletest/samples/
sample5_unittest.cc 174 EXPECT_EQ(0u, q0_.Size());
185 EXPECT_EQ(0u, q1_.Size());
191 EXPECT_EQ(1u, q2_.Size());
  /external/opencv3/modules/cudaobjdetect/src/
cascadeclassifier.cpp 67 virtual void setMaxObjectSize(Size maxObjectSize) { maxObjectSize_ = maxObjectSize; }
68 virtual Size getMaxObjectSize() const { return maxObjectSize_; }
70 virtual void setMinObjectSize(Size minSize) { minObjectSize_ = minSize; }
71 virtual Size getMinObjectSize() const { return minObjectSize_; }
86 Size maxObjectSize_;
87 Size minObjectSize_;
118 virtual Size getClassifierSize() const;
129 NCVStatus calculateMemReqsAndAllocate(const Size& frameSize);
130 NCVStatus process(const GpuMat& src, GpuMat& objects, cv::Size ncvMinSize, /*out*/ unsigned int& numDetections);
132 Size lastAllocatedFrameSize
    [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_perf.hpp 37 const cv::Size szQVGA = cv::Size(320, 240);
38 const cv::Size szVGA = cv::Size(640, 480);
39 const cv::Size szSVGA = cv::Size(800, 600);
40 const cv::Size szXGA = cv::Size(1024, 768);
41 const cv::Size szSXGA = cv::Size(1280, 1024)
    [all...]
  /external/opencv3/modules/cudev/test/
test_reduction.cu 53 const Size size = randomSize(100, 400);
55 Mat src = randomMat(size, CV_8UC1);
70 const Size size = randomSize(100, 400);
72 Mat src1 = randomMat(size, CV_32FC1, 0, 1);
73 Mat src2 = randomMat(size, CV_32FC1, 0, 1);
88 const Size size = randomSize(100, 400);
90 Mat src = randomMat(size, CV_8UC1)
    [all...]
  /art/cmdline/
token_range.h 153 // The size of the range, i.e. how many tokens are in it.
154 size_t Size() const {
160 return Size() > 0;
165 assert(offset < Size());
170 // Equality is defined as having both the same size, and
177 if (Size() != other.Size()) {
186 assert(index >= 0 && static_cast<size_t>(index) < Size());
196 if (Size() < other.Size()) {
    [all...]

Completed in 1160 milliseconds

<<11121314151617181920>>