HomeSort by relevance Sort by last modified time
    Searched refs:maxLevel (Results 1 - 16 of 16) sorted by null

  /external/clearsilver/util/
skiplist.h 28 * <maxLevel> should be calculated from expected list size using (^ = power):
30 * <root> ^ <maxLevel> == expected # of items
32 * I've capped <maxLevel> at 20, which would be good for a minimum of
45 NEOERR *skipNewList(skipList *skip, int threaded, int root, int maxLevel,
50 * multi-thread safe. <root> and <maxLevel> determine
59 * maxLevel - performance parameter (see above).
skiplist.c 64 INT32 maxLevel; /* max level list can reach */
329 while((drand48() < list->randLimit) && (level < list->maxLevel))
334 if(list->topLevel < list->maxLevel)
358 NEOERR *skipNewList(skipList *skip, int threaded, int root, int maxLevel,
369 if (maxLevel == 0)
370 return nerr_raise(NERR_ASSERT, "maxLevel must be greater than 0");
372 if(maxLevel >= SKIP_MAXLEVEL) /* check limits */
373 maxLevel = SKIP_MAXLEVEL-1;
380 list->maxLevel = maxLevel; /* init list constants *
    [all...]
dict.h 23 NEOERR *dictCreate(dictCtx *dict, BOOL threaded, UINT32 root, UINT32 maxLevel,
29 * multi-thread safe. <root>, <maxLevel>, and <flushLimit>
33 * maxLevel - performance parameter (see above).
dict.c 551 NEOERR *dictCreate(dictCtx *rdict, BOOL threaded, UINT32 root, UINT32 maxLevel,
578 err = skipNewList(&(dict->list), threaded, root, maxLevel,
  /external/chromium/third_party/icu/source/common/
ubidiln.c 405 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
411 * Since each run is moved but not modified, and since at the initial maxLevel
413 * don't need to do anything there and can predecrement maxLevel.
427 * However, for all maxLevel>paraLevel, this run will never be reordered
428 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
435 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) {
441 if(maxLevel<=(minLevel|1)) {
461 while(--maxLevel>=minLevel) {
466 /* look for a sequence of runs that are all at >=maxLevel */
468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
    [all...]
  /external/icu4c/common/
ubidiln.c 405 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
411 * Since each run is moved but not modified, and since at the initial maxLevel
413 * don't need to do anything there and can predecrement maxLevel.
427 * However, for all maxLevel>paraLevel, this run will never be reordered
428 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
435 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) {
441 if(maxLevel<=(minLevel|1)) {
461 while(--maxLevel>=minLevel) {
466 /* look for a sequence of runs that are all at >=maxLevel */
468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
    [all...]
  /system/media/opensles/tests/examples/
slesTestEqFdPath.cpp 217 SLmillibel minLevel, maxLevel = 0;
218 result = (*eqItf)->GetBandLevelRange(eqItf, &minLevel, &maxLevel);
220 fprintf(stdout, "Band level range = %dmB to %dmB\n", minLevel, maxLevel);
228 result = (*eqItf)->SetBandLevel(eqItf, b, maxLevel);
slesTestEqOutputPath.cpp 221 SLmillibel minLevel, maxLevel = 0;
222 result = (*eqOutputItf)->GetBandLevelRange(eqOutputItf, &minLevel, &maxLevel);
224 fprintf(stdout, "Band level range = %dmB to %dmB\n", minLevel, maxLevel);
232 result = (*eqOutputItf)->SetBandLevel(eqOutputItf, b, maxLevel);
  /build/tools/droiddoc/templates/assets/
android-developer-reference.js 26 var maxLevel = SINCE_DATA.length;
29 userApiLevel = userApiLevel == 0 ? maxLevel : userApiLevel; // If there's no cookie (zero), use the max by default
40 for (var i = maxLevel-1; i >= 0; i--) {
52 var maxLevel = SINCE_DATA.length;
54 var selectedLevel = maxLevel;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
RecognitionView.java 88 final int maxLevel = mSpeakNow.size() - 1;
90 int index = (int) ((mVolume - min) / (max - min) * maxLevel);
91 final int level = Math.min(Math.max(0, index), maxLevel);
  /external/webkit/WebCore/editing/
visible_units.cpp     [all...]
  /external/webkit/WebCore/html/
HTMLParser.cpp     [all...]
  /external/chromium/third_party/icu/source/i18n/
ucol.cpp     [all...]
  /external/icu4c/i18n/
ucol.cpp     [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 798 milliseconds