HomeSort by relevance Sort by last modified time
    Searched refs:arraySize (Results 1 - 25 of 301) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tpm2/
Bits_fp.h 12 unsigned int arraySize // IN: size in bytes of 'bArray'
22 unsigned int arraySize // IN: size in bytes of 'bArray'
33 unsigned int arraySize // IN: size in bytes of 'bArray'
Bits.c 26 unsigned int arraySize // IN: size in bytes of 'bArray'
29 pAssert(arraySize > (bitNum >> 3));
42 unsigned int arraySize // IN: size in bytes of 'bArray'
45 pAssert(arraySize > bitNum/8);
58 unsigned int arraySize // IN: size in bytes of 'bArray'
61 pAssert(arraySize > bitNum/8);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CalendarCache.java 22 makeArrays(arraySize);
32 arraySize = newSize;
33 threshold = (int)(arraySize * 0.75);
68 index = (index + delta) % arraySize;
75 int oldSize = arraySize;
80 arraySize = primes[++pIndex];
82 arraySize = arraySize * 2 + 1;
86 makeArrays(arraySize);
102 int h = (int)((key * 15821 + 1) % arraySize);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarCache.java 20 makeArrays(arraySize);
30 arraySize = newSize;
31 threshold = (int)(arraySize * 0.75);
66 index = (index + delta) % arraySize;
73 int oldSize = arraySize;
78 arraySize = primes[++pIndex];
80 arraySize = arraySize * 2 + 1;
84 makeArrays(arraySize);
100 int h = (int)((key * 15821 + 1) % arraySize);
    [all...]
  /external/icu/icu4c/source/samples/cal/
uprint.c 39 int32_t arraySize;
48 arraySize = BUF_SIZE;
62 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
71 arraySize = BUF_SIZE;
  /external/icu/icu4c/source/samples/date/
uprint.c 40 int32_t arraySize;
49 arraySize = BUF_SIZE;
63 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
72 arraySize = BUF_SIZE;
  /cts/tests/tests/rscpp/librscpptest/
rs_jni_element.cpp 233 for (int arraySize = 1; arraySize <= 3; arraySize++) {
236 eb->add(Element::A_8(mRS), "A_8", arraySize);
237 eb->add(Element::RGBA_4444(mRS), "RGBA_4444", arraySize);
238 eb->add(Element::RGBA_5551(mRS), "RGBA_5551", arraySize);
239 eb->add(Element::RGB_565(mRS), "RGB_565", arraySize);
240 eb->add(Element::RGB_888(mRS), "RGB_888", arraySize);
241 eb->add(Element::RGBA_8888(mRS), "RGBA_8888", arraySize);
242 eb->add(Element::F32(mRS), "F32", arraySize);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
ArraysTest.java 57 final static int arraySize = 100;
86 for (int counter = 0; counter < arraySize; counter++) {
101 for (int counter = 0; counter < arraySize; counter++) {
120 for (byte counter = 0; counter < arraySize; counter++)
127 Arrays.binarySearch(intArray, (byte) arraySize) == -(arraySize + 1));
128 for (byte counter = 0; counter < arraySize; counter++)
130 for (byte counter = 0; counter < arraySize; counter++)
141 for (char counter = 0; counter < arraySize; counter++)
149 Arrays.binarySearch(charArray, (char) (arraySize + 1)) == -(arraySize + 1))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PointerTrackerQueue.java 53 final int arraySize = mArraySize;
54 if (arraySize < expandableArray.size()) {
55 expandableArray.set(arraySize, pointer);
59 mArraySize = arraySize + 1;
69 final int arraySize = mArraySize;
71 for (int index = 0; index < arraySize; index++) {
101 final int arraySize = mArraySize;
103 for (newIndex = index = 0; index < arraySize; index++) {
120 for (; index < arraySize; index++) {
153 final int arraySize = mArraySize
    [all...]
  /external/vulkan-validation-layers/layers/
image.h 52 uint32_t arraySize;
60 : mipLevels(0), arraySize(0), format(VK_FORMAT_UNDEFINED), samples(VK_SAMPLE_COUNT_1_BIT),
63 : mipLevels(pCreateInfo->mipLevels), arraySize(pCreateInfo->arrayLayers), format(pCreateInfo->format),
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
image.h 51 uint32_t arraySize;
58 : mipLevels(0), arraySize(0), format(VK_FORMAT_UNDEFINED), samples(VK_SAMPLE_COUNT_1_BIT),
61 : mipLevels(pCreateInfo->mipLevels), arraySize(pCreateInfo->arrayLayers), format(pCreateInfo->format),
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
ElementTest.java 275 for (int arraySize = 1; arraySize <= 3; arraySize++) {
278 eb.add(Element.A_8(mRS), "A_8", arraySize);
279 eb.add(Element.RGBA_4444(mRS), "RGBA_4444", arraySize);
280 eb.add(Element.RGBA_5551(mRS), "RGBA_5551", arraySize);
281 eb.add(Element.RGB_565(mRS), "RGB_565", arraySize);
282 eb.add(Element.RGB_888(mRS), "RGB_888", arraySize);
283 eb.add(Element.RGBA_8888(mRS), "RGBA_8888", arraySize);
284 eb.add(Element.F16(mRS), "F16", arraySize);
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 34 public NewExpr(int type, ASTList arraySize, ArrayInit init) {
35 super(null, new ASTList(arraySize));
43 ASTList arraySize, ArrayInit init) {
44 NewExpr e = new NewExpr(className, arraySize);
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
CoordinateUtils.java 54 public static int[] newCoordinateArray(final int arraySize) {
55 return new int[ELEMENT_SIZE * arraySize];
59 public static int[] newCoordinateArray(final int arraySize,
61 final int[] result = new int[ELEMENT_SIZE * arraySize];
62 for (int i = 0; i < arraySize; ++i) {
  /external/swiftshader/src/OpenGL/compiler/
Types.h 187 int arraySize, const TLayoutQualifier &layoutQualifier)
190 mArraySize(arraySize),
208 int arraySize() const
243 primarySize(s0), secondarySize(s1), array(false), arraySize(0), maxArraySize(0), arrayInformationType(0), interfaceBlock(0),
249 primarySize(s0), secondarySize(s1), array(a), arraySize(0), maxArraySize(0), arrayInformationType(0), interfaceBlock(0),
256 primarySize(1), secondarySize(1), array(false), arraySize(0), maxArraySize(0), arrayInformationType(0), interfaceBlock(0),
265 primarySize(1), secondarySize(1), array(arraySizeIn > 0), arraySize(arraySizeIn), maxArraySize(0), arrayInformationType(0),
366 return arraySize * elementRegisterCount();
384 int getArraySize() const { return arraySize; }
385 void setArraySize(int s) { array = true; arraySize = s;
    [all...]
OutputASM.h 60 Uniform(GLenum type, GLenum precision, const std::string &name, int arraySize, int registerIndex, int blockId, const BlockMemberInfo& blockMemberInfo);
65 int arraySize;
77 UniformBlock(const std::string& name, unsigned int dataSize, unsigned int arraySize,
82 unsigned int arraySize;
117 virtual void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut) = 0;
118 virtual void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride) = 0;
132 void getBlockLayoutInfo(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int *arrayStrideOut, int *matrixStrideOut) override;
133 void advanceOffset(const TType &type, unsigned int arraySize, bool isRowMajorMatrix, int arrayStride, int matrixStride) override;
141 Attribute(GLenum type, const std::string &name, int arraySize, int location, int registerIndex);
145 int arraySize;
    [all...]
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_dump_layers.cpp 383 void HwcDebug::getHalPixelFormatStr(int format, char pixFormatStr[], size_t arraySize)
390 strlcpy(pixFormatStr, "RGBA_8888", arraySize);
393 strlcpy(pixFormatStr, "RGBX_8888", arraySize);
396 strlcpy(pixFormatStr, "RGB_888", arraySize);
399 strlcpy(pixFormatStr, "RGB_565", arraySize);
402 strlcpy(pixFormatStr, "BGRA_8888", arraySize);
405 strlcpy(pixFormatStr, "YV12", arraySize);
408 strlcpy(pixFormatStr, "YCbCr_422_SP_NV16", arraySize);
411 strlcpy(pixFormatStr, "YCrCb_420_SP_NV21", arraySize);
414 strlcpy(pixFormatStr, "YCbCr_422_I_YUY2", arraySize);
    [all...]
hwc_dump_layers.h 131 void getHalPixelFormatStr(int format, char pixelformatstr[], size_t arraySize);
  /external/skia/tests/
FloatingPointTextureTest.cpp 29 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
30 if (0 != arraySize % 4) {
31 REPORT_FAILURE(reporter, "(0 != arraySize % 4)",
32 SkString("arraySize must be divisible by 4."));
37 controlPixelData.setCount(arraySize);
38 readBuffer.setCount(arraySize);
40 for (int i = 0; i < arraySize; i += 4) {
  /frameworks/base/core/java/android/hardware/camera2/marshal/impl/
MarshalQueryableArray.java 76 int arraySize = remaining / elementSize;
88 arraySize, elementSize, remaining, mClass));
91 array = Array.newInstance(mComponentClass, arraySize);
92 for (int i = 0; i < arraySize; ++i) {
106 int arraySize = arrayList.size();
107 array = copyListToArray(arrayList, Array.newInstance(mComponentClass, arraySize));
  /external/replicaisland/src/com/replica/replicaisland/
ObjectManager.java 40 public ObjectManager(int arraySize) {
42 mObjects = new FixedSizeArray<BaseObject>(arraySize);
43 mPendingAdditions = new FixedSizeArray<BaseObject>(arraySize);
44 mPendingRemovals = new FixedSizeArray<BaseObject>(arraySize);
  /frameworks/rs/driver/
rsdShaderCache.h 60 uint32_t vtxUniformSize(uint32_t a) const {return mCurrent->vtxUniforms[a].arraySize;}
62 uint32_t fragUniformSize(uint32_t a) const {return mCurrent->fragUniforms[a].arraySize;}
75 int32_t arraySize;
93 uint32_t arraySize;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
dynamic_pt_writing_utils.cpp 41 if (!writePtNodeArraySizeAndAdvancePosition(buffer, 0 /* arraySize */, &writingPos)) {
55 BufferWithExtendableBuffer *const buffer, const size_t arraySize,
60 /*if (arraySize <= MAX_PTNODE_ARRAY_SIZE_TO_USE_SMALL_SIZE_FIELD) {
61 return buffer->writeUintAndAdvancePosition(arraySize, SMALL_PTNODE_ARRAY_SIZE_FIELD_SIZE,
64 if (arraySize <= MAX_PTNODE_ARRAY_SIZE) {
65 uint32_t data = arraySize | LARGE_PTNODE_ARRAY_SIZE_FIELD_SIZE_FLAG;
69 AKLOGI("PtNode array size cannot be written because arraySize is too large: %zd",
70 arraySize);
  /external/deqp/modules/glshared/
glsAttributeLocationTests.cpp 641 string generateTestName (const AttribType& type, int arraySize)
643 return type.getName() + (arraySize != Attribute::NOT_ARRAY ? "_array_" + de::toString(arraySize) : "");
671 Attribute::Attribute (const AttribType& type, const string& name, deInt32 layoutLocation, const Cond& cond, int arraySize)
676 , m_arraySize (arraySize)
807 int arraySize)
808 : TestCase (testCtx, generateTestName(type, arraySize).c_str(), generateTestName(type, arraySize).c_str())
811 , m_arraySize (arraySize)
832 int arraySize)
    [all...]
glsAttributeLocationTests.hpp 100 int arraySize = NOT_ARRAY);
140 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
159 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
178 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
197 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
215 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
233 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
305 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
323 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY);
341 int arraySize = AttributeLocationTestUtil::Attribute::NOT_ARRAY)
    [all...]

Completed in 410 milliseconds

1 2 3 4 5 6 7 8 91011>>