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

1 2 3 4 5 6 7 8 910

  /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 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/icu4j/main/classes/core/src/com/ibm/icu/impl/
CalendarCache.java 18 makeArrays(arraySize);
28 arraySize = newSize;
29 threshold = (int)(arraySize * 0.75);
64 index = (index + delta) % arraySize;
71 int oldSize = arraySize;
76 arraySize = primes[++pIndex];
78 arraySize = arraySize * 2 + 1;
82 makeArrays(arraySize);
98 int h = (int)((key * 15821 + 1) % arraySize);
    [all...]
  /external/icu/icu4c/source/samples/cal/
uprint.c 35 int32_t arraySize;
44 arraySize = BUF_SIZE;
58 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
67 arraySize = BUF_SIZE;
  /external/icu/icu4c/source/samples/date/
uprint.c 36 int32_t arraySize;
45 arraySize = BUF_SIZE;
59 ucnv_fromUnicode(converter, &myTarget, myTarget + arraySize,
68 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 57 uint32_t arraySize;
64 : mipLevels(0), arraySize(0), format(VK_FORMAT_UNDEFINED), samples(VK_SAMPLE_COUNT_1_BIT),
67 : 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/skia/tests/
FloatingPointTextureTest.cpp 28 T min, T max, T epsilon, T maxInt, int arraySize, GrPixelConfig config) {
30 controlPixelData.setCount(arraySize);
31 readBuffer.setCount(arraySize);
33 for (int i = 0; i < arraySize; i += 4) {
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_dump_layers.cpp 380 void HwcDebug::getHalPixelFormatStr(int format, char pixFormatStr[], size_t arraySize)
387 strlcpy(pixFormatStr, "RGBA_8888", arraySize);
390 strlcpy(pixFormatStr, "RGBX_8888", arraySize);
393 strlcpy(pixFormatStr, "RGB_888", arraySize);
396 strlcpy(pixFormatStr, "RGB_565", arraySize);
399 strlcpy(pixFormatStr, "BGRA_8888", arraySize);
402 strlcpy(pixFormatStr, "YV12", arraySize);
405 strlcpy(pixFormatStr, "YCbCr_422_SP_NV16", arraySize);
408 strlcpy(pixFormatStr, "YCrCb_420_SP_NV21", arraySize);
411 strlcpy(pixFormatStr, "YCbCr_422_I_YUY2", arraySize);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageViewTests.cpp 199 const int arraySize = getArraySize(m_imageViewType);
224 return new ImageSamplingInstance(context, renderSize, m_imageViewType, m_imageFormat, imageSize, arraySize, m_componentMapping, m_subresourceRange, samplerParams, m_samplerLod, vertices);
344 const deUint32 arraySize = ImageViewTest::getArraySize(viewType);
367 // name samplerLod subresourceRange (aspectMask, baseMipLevel, mipLevels, baseArrayLayer, arraySize)
368 { "lod_base_mip_level", 0.0f, { imageAspectFlags, 2u, numLevels - 2u, 0u, arraySize } },
369 { "lod_mip_levels", 4.0f, { imageAspectFlags, 0u, 3u, 0u, arraySize } },
374 // name samplerLod subresourceRange (aspectMask, baseMipLevel, mipLevels, baseArrayLayer, arraySize)
375 { "base_array_layer", 0.0f, { imageAspectFlags, 0u, numLevels, 1u, arraySize - 1u } },
382 // name samplerLod subresourceRange (aspectMask, baseMipLevel, mipLevels, baseArrayLayer, arraySize)
401 // name samplerLod subresourceRange (aspectMask, baseMipLevel, mipLevels, baseArrayLayer, arraySize)
    [all...]
  /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);
PhasedObjectManager.java 40 public PhasedObjectManager(int arraySize) {
41 super(arraySize);
  /frameworks/rs/driver/
rsdShaderCache.h 64 uint32_t vtxUniformSize(uint32_t a) const {return mCurrent->vtxUniforms[a].arraySize;}
66 uint32_t fragUniformSize(uint32_t a) const {return mCurrent->fragUniforms[a].arraySize;}
79 int32_t arraySize;
97 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...]
  /external/icu/icu4c/source/test/letest/
xmlreader.cpp 36 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize)
40 arraySize = 1;
42 arraySize += 1;
45 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
82 static float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize)
86 arraySize = 1;
88 arraySize += 1;
91 float *array = NEW_ARRAY(float, arraySize);
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.cpp 36 static le_uint32 *getHexArray(const UnicodeString &numbers, int32_t &arraySize)
40 arraySize = 1;
42 arraySize += 1;
45 le_uint32 *array = NEW_ARRAY(le_uint32, arraySize);
82 static float *getFloatArray(const UnicodeString &numbers, int32_t &arraySize)
86 arraySize = 1;
88 arraySize += 1;
91 float *array = NEW_ARRAY(float, arraySize);

Completed in 1215 milliseconds

1 2 3 4 5 6 7 8 910