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

1 2 3 4 5

  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 44 public MtpPropertyList(int maxCount, int result) {
45 mMaxCount = maxCount;
47 mObjectHandles = new int[maxCount];
48 mPropertyCodes = new int[maxCount];
49 mDataTypes = new int[maxCount];
  /cts/tests/tests/opengl/libopengltest/
attach_shader_eleven.cpp 32 GLsizei maxCount = 10;
34 GLuint shaders[maxCount];
36 glGetAttachedShaders(program, maxCount,
attach_shader_four.cpp 27 GLsizei maxCount = 10;
29 GLuint shaders[maxCount];
31 glGetAttachedShaders(program, maxCount,
attach_shader_five.cpp 31 GLsizei maxCount = 10;
33 GLuint shaders[maxCount];
35 glGetAttachedShaders(program, maxCount,
attach_shader_one.cpp 48 GLsizei maxCount = 10;
50 GLuint shaders[maxCount];
52 glGetAttachedShaders(program, maxCount,
attach_shader_ten.cpp 31 GLsizei maxCount = 10;
33 GLuint shaders[maxCount];
35 glGetAttachedShaders(program, maxCount,
attach_shader_two.cpp 33 GLsizei maxCount = 10;
35 GLuint shaders[maxCount];
37 glGetAttachedShaders(program, maxCount,
color_one.cpp 72 GLsizei maxCount = 10;
74 GLuint shaders[maxCount];
76 glGetAttachedShaders(gProgram, maxCount,
  /external/chromium_org/third_party/icu/source/i18n/
quant.cpp 26 // assert(minCount <= maxCount);
29 this->maxCount = _maxCount;
37 maxCount(o.maxCount)
66 while (count < maxCount) {
100 if (maxCount == 1) {
102 } else if (maxCount == MAX) {
106 } else if (minCount == 1 && maxCount == MAX) {
112 if (maxCount != MAX) {
113 ICU_Utility::appendNumber(result, maxCount);
    [all...]
quant.h 29 uint32_t minCount, uint32_t maxCount);
121 uint32_t maxCount;
ucol_bld.h 44 int32_t maxCount;
  /external/icu4c/i18n/
quant.cpp 26 // assert(minCount <= maxCount);
29 this->maxCount = _maxCount;
37 maxCount(o.maxCount)
69 while (count < maxCount) {
103 if (maxCount == 1) {
105 } else if (maxCount == MAX) {
109 } else if (minCount == 1 && maxCount == MAX) {
115 if (maxCount != MAX) {
116 ICU_Utility::appendNumber(result, maxCount);
    [all...]
quant.h 29 uint32_t minCount, uint32_t maxCount);
117 uint32_t maxCount;
ucol_bld.h 44 int32_t maxCount;
  /dalvik/libdex/
DexDataMap.cpp 28 DexDataMap* dexDataMapAlloc(u4 maxCount) {
39 if (!safe_mul(&size, maxCount, sizeof(u4) + sizeof(u2)) ||
51 map->max = maxCount;
53 map->types = (u2*) (map->offsets + maxCount);
DexDataMap.h 36 DexDataMap* dexDataMapAlloc(u4 maxCount);
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RootCursorWrapper.java 41 public RootCursorWrapper(String authority, String rootId, Cursor cursor, int maxCount) {
47 if (maxCount > 0 && count > maxCount) {
48 mCount = maxCount;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/harfbuzz/
HarfBuzzFace.cpp 105 static const unsigned maxCount = 32;
107 unsigned scriptCount = maxCount;
108 hb_tag_t scriptTags[maxCount];
111 unsigned languageCount = maxCount;
112 hb_tag_t languageTags[maxCount];
  /device/generic/goldfish/libqemu/
test_guest_1.c 43 const int maxCount = 100;
66 for (count = 0; count < maxCount; count++) {
test_guest_2.c 56 int maxCount = 1000;
162 for (count = 0; count < maxCount; count++) {
237 printf("Total bytes: %g bytes\n", 1.0*maxCount*bufferSize);
238 printf("Bandwidth: %g MB/s\n", (maxCount*bufferSize/(1024.0*1024.0))/(time1 - time0) );
  /dalvik/vm/
ReferenceTable.h 50 * If "initialCount" != "maxCount", the table will expand as required.
55 int maxCount);
  /external/srec/tools/grxmlcompile/
gr_iface.cpp 113 void Graph::BeginItemRepeat (SubGraph *subg, int minCount, int maxCount)
115 subg->BeginScope (SCOPE_REPEAT, minCount, maxCount);
177 void Graph::BeginCount (SubGraph *subg, int minCount, int maxCount)
179 subg->BeginScope (SCOPE_COUNT, minCount, maxCount);
grph.h 56 void BeginCount (SubGraph *subg, int minCount, int maxCount);
  /external/easymock/src/org/easymock/
MockControl.java 333 * <code>minCount</code> and <code>maxCount</code> times, and will react
338 * @param maxCount
345 public void setVoidCallable(int minCount, int maxCount) {
348 .times(minCount, maxCount);
358 * <code>minCount</code> and <code>maxCount</code> times, and will react
365 * @param maxCount
376 public void setThrowable(Throwable throwable, int minCount, int maxCount) {
379 .andThrow(throwable).times(minCount, maxCount);
391 * <code>minCount</code> and <code>maxCount</code> times, and will react
398 * @param maxCount
    [all...]
  /external/lzma/C/
Threads.c 58 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount)
60 *p = CreateSemaphore(NULL, (LONG)initCount, (LONG)maxCount, NULL);

Completed in 868 milliseconds

1 2 3 4 5