HomeSort by relevance Sort by last modified time
    Searched defs:Sizes (Results 1 - 16 of 16) sorted by null

  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
ChecksumCalculator.h 126 enum Sizes {
  /prebuilts/go/darwin-x86/src/go/types/
sizes.go 5 // This file implements Sizes.
9 // Sizes defines the sizing functions for package unsafe.
10 type Sizes interface {
24 // StdSizes is a convenience type for creating commonly used Sizes.
41 // *StdSizes implements Sizes.
156 // common architecture word sizes and alignments
174 // SizesFor returns the Sizes used by a compiler for an architecture.
180 func SizesFor(compiler, arch string) Sizes {
191 // stdSizes is used if Config.Sizes == nil.
195 if s := conf.Sizes; s != nil
    [all...]
  /prebuilts/go/linux-x86/src/go/types/
sizes.go 5 // This file implements Sizes.
9 // Sizes defines the sizing functions for package unsafe.
10 type Sizes interface {
24 // StdSizes is a convenience type for creating commonly used Sizes.
41 // *StdSizes implements Sizes.
156 // common architecture word sizes and alignments
174 // SizesFor returns the Sizes used by a compiler for an architecture.
180 func SizesFor(compiler, arch string) Sizes {
191 // stdSizes is used if Config.Sizes == nil.
195 if s := conf.Sizes; s != nil
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zFolderInStream.h 40 CRecordVector<UInt64> Sizes;
53 FOR_VECTOR (i, Sizes)
54 size += Sizes[i];
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDimensions.h 23 * The Sizes class encodes as part of the type the number of dimensions and the
24 * sizes corresponding to each dimension. It uses no storage space since it is
27 * at compile time but the sizes are set during execution.
93 struct Sizes : internal::numeric_list<std::ptrdiff_t, Indices...> {
105 EIGEN_DEVICE_FUNC Sizes() { }
107 explicit EIGEN_DEVICE_FUNC Sizes(const array<DenseIndex, Base::count>& /*indices*/) {
111 template <typename... DenseIndex> EIGEN_DEVICE_FUNC Sizes(DenseIndex...) { }
112 explicit EIGEN_DEVICE_FUNC Sizes(std::initializer_list<std::ptrdiff_t> /*l*/) {
117 template <typename T> Sizes& operator = (const T& /*other*/) {
138 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE std::ptrdiff_t array_prod(const Sizes<Indices...>&)
    [all...]
  /external/llvm/lib/Analysis/
Delinearization.cpp 110 SmallVector<const SCEV *, 3> Subscripts, Sizes;
111 SE->delinearize(AccessFn, Subscripts, Sizes, SE->getElementSize(Inst));
112 if (Subscripts.size() == 0 || Sizes.size() == 0 ||
113 Subscripts.size() != Sizes.size()) {
122 O << "[" << *Sizes[i] << "]";
123 O << " with elements of " << *Sizes[Size - 1] << " bytes.\n";
DependenceAnalysis.cpp     [all...]
  /external/skia/src/core/
SkVertices.cpp 25 struct SkVertices::Sizes {
26 Sizes(int vertexCount, int indexCount, bool hasTexs, bool hasColors) {
61 SkVertices::Sizes(vertexCount, indexCount, hasTexs, hasColors));
65 const SkVertices::Sizes& sizes) {
66 this->init(mode, vertexCount, indexCount, sizes);
70 const SkVertices::Sizes& sizes) {
71 if (!sizes.isValid()) {
75 void* storage = ::operator new (sizes.fTotal)
    [all...]
  /external/skqp/src/core/
SkVertices.cpp 25 struct SkVertices::Sizes {
26 Sizes(int vertexCount, int indexCount, bool hasTexs, bool hasColors) {
61 SkVertices::Sizes(vertexCount, indexCount, hasTexs, hasColors));
65 const SkVertices::Sizes& sizes) {
66 this->init(mode, vertexCount, indexCount, sizes);
70 const SkVertices::Sizes& sizes) {
71 if (!sizes.isValid()) {
75 void* storage = ::operator new (sizes.fTotal)
    [all...]
  /external/clang/test/Index/
print-type-size.cpp 212 namespace Sizes {
214 // CHECK64: StructDecl=A:[[@LINE+2]]:8 (Definition) [type=Sizes::A] [typekind=Record] [sizeof=8] [alignof=4]
215 // CHECK32: StructDecl=A:[[@LINE+1]]:8 (Definition) [type=Sizes::A] [typekind=Record] [sizeof=8] [alignof=4]
221 // CHECK64: StructDecl=B:[[@LINE+2]]:8 (Definition) [type=Sizes::B] [typekind=Record] [sizeof=12] [alignof=4]
222 // CHECK32: StructDecl=B:[[@LINE+1]]:8 (Definition) [type=Sizes::B] [typekind=Record] [sizeof=12] [alignof=4]
227 // CHECK64: StructDecl=C:[[@LINE+2]]:8 (Definition) [type=Sizes::C] [typekind=Record] [sizeof=8] [alignof=4]
228 // CHECK32: StructDecl=C:[[@LINE+1]]:8 (Definition) [type=Sizes::C] [typekind=Record] [sizeof=8] [alignof=4]
236 // CHECK64: StructDecl=D:[[@LINE+2]]:8 (Definition) [type=Sizes::D] [typekind=Record] [sizeof=8] [alignof=4]
237 // CHECK32: StructDecl=D:[[@LINE+1]]:8 (Definition) [type=Sizes::D] [typekind=Record] [sizeof=8] [alignof=4]
242 // CHECK64: StructDecl=E:[[@LINE+2]]:32 (Definition) [type=Sizes::E] [typekind=Record] [sizeof=5] [alignof=1
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
Update.cpp 102 CRecordVector<UInt64> Sizes;
191 if (index >= Sizes.Size())
192 index = Sizes.Size() - 1;
193 UInt64 volSize = Sizes[index];
735 volStreamSpec->Sizes = options.VolumesSizes;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
FixedLenDecoderEmitter.cpp     [all...]
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalAppWidgetProvider.java 93 * This widget is scaling the font sizes to fit within the widget bounds chosen by the user without
94 * any clipping. To do so it measures layouts offscreen using a range of font sizes in order to
177 * Called when the app widget changes sizes.
189 * Compute optimal font and icon sizes offscreen for both portrait and landscape orientations
202 * Compute optimal font and icon sizes offscreen for the given orientation.
249 final Sizes template = new Sizes(targetWidthPx, targetHeightPx, largestClockFontSizePx);
251 // Compute optimal font sizes and icon sizes to fit within the widget bounds.
252 final Sizes sizes = optimizeSizes(context, template, nextAlarmTime) local
    [all...]
  /external/pdfium/third_party/lcms/src/
cmstypes.c 164 // A table of n elements is readed, where first comes n records containing offsets and sizes and
    [all...]
  /prebuilts/tools/common/bazel/formc-deps/
jgoodies-forms.jar 
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp     [all...]

Completed in 633 milliseconds