/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...] |
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...] |
ucol_bld.h | 44 int32_t maxCount;
|
quant.h | 29 uint32_t minCount, uint32_t maxCount); 117 uint32_t maxCount;
|
/external/qemu/distrib/sdl-1.2.15/src/thread/win32/ |
win_ce_semaphore.h | 7 LONG MaxCount;
|
/system/extras/ext4_utils/ |
test_ext4fixup | 3 typeset -i I ITERATIONS PHASE LOC COUNT MAXCOUNT 9 echo "$ME: Usage: $ME <iterations> <maxcount> <filesystem_image>" >&2 14 MAXCOUNT="$2" 48 let COUNT="$RANDOM"%"$MAXCOUNT"
|
/cts/tests/tests/opengl/libopengltest/ |
attach_shader_eleven.cpp | 32 GLsizei maxCount = 10; 34 GLuint shaders[maxCount]; 36 glGetAttachedShaders(program, maxCount,
|
attach_shader_five.cpp | 31 GLsizei maxCount = 10; 33 GLuint shaders[maxCount]; 35 glGetAttachedShaders(program, maxCount,
|
attach_shader_four.cpp | 27 GLsizei maxCount = 10; 29 GLuint shaders[maxCount]; 31 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,
|
/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];
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/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];
|
/external/libvorbis/vq/ |
distribution.c | 95 long maxcount=0; local 138 long maxcount=0,i,j; local 140 if(countarray[i]>maxcount)maxcount=countarray[i]; 144 int stars=rint(50./maxcount*countarray[ptr]); 228 long maxcount=0,i,j; local 230 if(countarray[i]>maxcount)maxcount=countarray[i]; 235 int stars=rint(50./maxcount*countarray[i]);
|
/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);
|
/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/lzma/C/ |
Threads.c | 58 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount)
60 *p = CreateSemaphore(NULL, (LONG)initCount, (LONG)maxCount, NULL);
|
Threads.h | 45 WRes Semaphore_Create(CSemaphore *p, UInt32 initCount, UInt32 maxCount);
|
/device/generic/goldfish/libqemu/ |
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) );
|
test_guest_1.c | 43 const int maxCount = 100; 66 for (count = 0; count < maxCount; count++) {
|
/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);
|
/dalvik/vm/ |
ReferenceTable.h | 50 * If "initialCount" != "maxCount", the table will expand as required. 55 int maxCount);
|