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

1 2 3

  /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/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;
ucol_wgt.cpp 326 uint32_t maxCount;
351 maxCount=0;
353 maxCount+=(uint32_t)ranges[i].count*powers[4-ranges[i].length];
355 if(maxCount>=n) {
357 printf("the maximum number of %lu weights is sufficient for n=%lu\n", maxCount, n);
361 printf("error: the maximum number of %lu weights is insufficient for n=%lu\n", maxCount, n);
386 maxCount=0;
389 maxCount+=ranges[rangeCount].count2;
391 } while(n>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);
  /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);
IndirectRefTable.cpp 31 size_t maxCount, IndirectRefKind desiredKind)
34 assert(initialCount <= maxCount);
45 max_entries_ = maxCount;
ReferenceTable.cpp 26 int maxCount)
29 assert(initialCount <= maxCount);
39 pRef->maxEntries = 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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-bcel.jar 
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
MediaDataBox.java 86 long maxCount = (64 * 1024 * 1024) - (32 * 1024);
92 offset += from.transferTo(position + offset, Math.min(maxCount, count - offset), to);
  /frameworks/av/services/camera/libcameraservice/camera2/
Parameters.h 213 // Get entry from camera static characteristics information. min/maxCount
218 size_t minCount=0, size_t maxCount=0, bool required=true) const;
354 size_t minCount=0, size_t maxCount=0) const {
355 return mParameters.staticInfo(tag, minCount, maxCount);

Completed in 345 milliseconds

1 2 3