HomeSort by relevance Sort by last modified time
    Searched refs:strength (Results 26 - 50 of 94) sorted by null

12 3 4

  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_feature_detection.cpp 362 /*Filter horizontally the three rows gxx,gxy,gyy into the strength subrow starting at i,j
491 /*Filter horizontally the three rows gxx,gxy,gyy of length 128 into the strength subrow s
613 /*Compute the Harris corner strength of the chunk [left,top,right,bottom] of img and
655 /*Compute the Harris corner strength of the chunk [left,top,left+123,bottom] of img and
696 /*Compute Harris corner strength of img. Strength is returned for the region
714 /*Compute the Harris strength of a chunk*/
719 /*Compute Harris corner strength of img. Strength is returned for the region
741 /*Compute the Harris strength of a chunk*
    [all...]
db_feature_detection.h 154 Extract corners from a pre-computed strength image.
155 \param strength Harris strength image
160 virtual void ExtractCorners(float ** strength, double *x_coord, double *y_coord, int *nr_corners);
  /external/speex/libspeex/
scal.c 137 EXPORT void speex_decorrelate(SpeexDecorrState *st, const spx_int16_t *in, spx_int16_t *out, int strength)
142 if (strength<0)
143 strength = 0;
144 if (strength>100)
145 strength = 100;
147 amount = .01*strength;
  /libcore/luni/src/main/java/libcore/icu/
RuleBasedCollatorICU.java 42 public static final int STRENGTH = 5;
79 return NativeCollation.getAttribute(address, STRENGTH);
82 public void setStrength(int strength) {
83 NativeCollation.setAttribute(address, STRENGTH, strength);
  /external/v8/benchmarks/
deltablue.js 97 * New strengths may be inserted in the strength hierarchy without
101 function Strength(strengthValue, name) {
106 Strength.stronger = function (s1, s2) {
110 Strength.weaker = function (s1, s2) {
114 Strength.weakestOf = function (s1, s2) {
118 Strength.strongest = function (s1, s2) {
122 Strength.prototype.nextWeaker = function () {
124 case 0: return Strength.WEAKEST;
125 case 1: return Strength.WEAK_DEFAULT;
126 case 2: return Strength.NORMAL
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-deltablue.js 91 * New strengths may be inserted in the strength hierarchy without
95 function Strength(strengthValue, name) {
100 Strength.stronger = function (s1, s2) {
104 Strength.weaker = function (s1, s2) {
108 Strength.weakestOf = function (s1, s2) {
112 Strength.strongest = function (s1, s2) {
116 Strength.prototype.nextWeaker = function () {
118 case 0: return Strength.WEAKEST;
119 case 1: return Strength.WEAK_DEFAULT;
120 case 2: return Strength.NORMAL
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-deltablue.js 91 * New strengths may be inserted in the strength hierarchy without
95 function Strength(strengthValue, name) {
100 Strength.stronger = function (s1, s2) {
104 Strength.weaker = function (s1, s2) {
108 Strength.weakestOf = function (s1, s2) {
112 Strength.strongest = function (s1, s2) {
116 Strength.prototype.nextWeaker = function () {
118 case 0: return Strength.WEAKEST;
119 case 1: return Strength.WEAK_DEFAULT;
120 case 2: return Strength.NORMAL
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-deltablue.js 91 * New strengths may be inserted in the strength hierarchy without
95 function Strength(strengthValue, name) {
100 Strength.stronger = function (s1, s2) {
104 Strength.weaker = function (s1, s2) {
108 Strength.weakestOf = function (s1, s2) {
112 Strength.strongest = function (s1, s2) {
116 Strength.prototype.nextWeaker = function () {
118 case 0: return Strength.WEAKEST;
119 case 1: return Strength.WEAK_DEFAULT;
120 case 2: return Strength.NORMAL
    [all...]
  /external/icu4c/i18n/
ucol_tok.cpp 125 * collation parser and its strength into a file. When a big change in format
262 opts->strength = value;
315 U_STRING_DECL(option_14, "strength", 8);
410 /*06*/ {option_14, 8, strengthSub, 5, UCOL_STRENGTH}, /*"strength" */
487 U_STRING_INIT(option_14, "strength", 8);
1992 uint8_t strength = (specs & UCOL_TOK_BEFORE) - 1; local
2021 uint8_t strength = (specs & UCOL_TOK_BEFORE) - 1; local
    [all...]
usrchimp.h 72 UCollationStrength strength; member in struct:UStringSearch
bmsearch.cpp 80 UCollationStrength strength; member in class:Target
96 strengthMask(0), strength(UCOL_PRIMARY), variableTop(0), toShift(FALSE), coll(theCollator),
100 strength = ucol_getStrength(coll);
126 switch (strength)
204 if (strength >= UCOL_QUATERNARY) {
253 if (strength >= UCOL_QUATERNARY) {
349 if (strength < UCOL_IDENTICAL) {
ucoleitr.cpp 206 UCollationStrength strength; member in struct:UCollationPCE
231 strength = ucol_getStrength(coll);
253 switch(elems->pce->strength) {
281 if (elems->pce->strength >= UCOL_QUATERNARY) {
288 if (elems->pce->strength >= UCOL_QUATERNARY) {
514 // UCollationStrength strength = ucol_getStrength(coll);
620 switch (coll->strength)
ucol.cpp 127 if(collator->hiraganaQ == UCOL_ON && collator->strength >= UCOL_QUATERNARY) {
769 result->strength = (UColAttributeValue)opts->strength;
4672 UColAttributeValue strength = coll->strength; local
5800 int32_t strength = ucol_getAttribute(coll, UCOL_STRENGTH, status); local
7467 UColAttributeValue strength = coll->strength; local
8030 int32_t strength = coll->strength; local
    [all...]
  /external/icu4c/test/intltest/
srchtest.h 43 const UCollationStrength &strength) const;
ssearch.cpp 192 // Get the requested collation strength.
195 const UnicodeString *strength = testCase->getAttribute("strength"); local
197 if (strength==NULL) { collatorStrength = UCOL_TERTIARY;}
198 else if (*strength=="PRIMARY") { collatorStrength = UCOL_PRIMARY;}
199 else if (*strength=="SECONDARY") { collatorStrength = UCOL_SECONDARY;}
200 else if (*strength=="TERTIARY") { collatorStrength = UCOL_TERTIARY;}
201 else if (*strength=="QUATERNARY") { collatorStrength = UCOL_QUATERNARY;}
202 else if (*strength=="IDENTICAL") { collatorStrength = UCOL_IDENTICAL;}
204 // Bogus value supplied for strength. Shouldn't happen, even fro
533 const UnicodeString *strength = testCase->getAttribute("strength"); local
    [all...]
  /external/quake/quake/src/QW/server/
makefile 3 #CFLAGS = -mpentium -O6 -Wall -I../client -I. -DSERVERONLY -fomit-frame-pointer -fno-strength-reduce
4 #CFLAGS = -mpentium -O2 -Wall -I../client -I. -DSERVERONLY -fomit-frame-pointer -fno-strength-reduce
5 CFLAGS=-DSERVERONLY -I../client -V2.7.2.1 -bi486-linux/ -O6 -Wall -fomit-frame-pointer -fno-strength-reduce
  /external/speex/include/speex/
speex_echo.h 154 * @param strength How much alteration of the audio to apply from 0 to 100.
156 void speex_decorrelate(SpeexDecorrState *st, const spx_int16_t *in, spx_int16_t *out, int strength);
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/asymmetric/ec/
KeyPairGenerator.java 52 int strength = 239; field in class:KeyPairGenerator.EC
88 int strength,
91 this.strength = strength;
100 this.ecParams = ecParameters.get(Integer.valueOf(strength));
  /external/freetype/include/freetype/
ftoutln.h 315 /* `strength' pixels wider and higher. You may think of the left and */
318 /* Negative `strength' values to reduce the outline thickness are */
325 /* strength :: How strong the glyph is emboldened. Expressed in */
345 /* FT_Outline_Embolden( &face->slot->outline, strength ); */
350 FT_Pos strength );
  /system/media/wilhelm/tests/examples/
slesTestBassBoostPath.cpp 198 fprintf(stdout, "BassBoost strength is not supported on this platform. Too bad!\n");
200 fprintf(stdout, "BassBoost strength is supported, setting strength to %d\n", boostStrength);
205 SLpermille strength = 0; local
206 result = (*bbItf)->GetRoundedStrength(bbItf, &strength);
208 fprintf(stdout, "Rounded strength of boost = %d\n", strength);
257 fprintf(stdout, "and applies a bass boost effect of the specified strength,\n");
258 fprintf(stdout, "where strength is a integer value between 0 and 1000.\n");
287 // intentionally not checking that argv[2], the bassboost strength, is between 0 and 100
    [all...]
slesTestVirtualizerPath.cpp 199 fprintf(stdout, "Virtualizer strength is not supported on this platform. Too bad!\n");
201 fprintf(stdout, "Virtualizer strength is supported, setting strength to %d\n",
207 SLpermille strength = 0; local
208 result = (*virtItf)->GetRoundedStrength(virtItf, &strength);
210 fprintf(stdout, "Rounded strength of virt = %d\n", strength);
259 fprintf(stdout, "and applies a virtualization effect of the specified strength,\n");
260 fprintf(stdout, "where strength is an integer value between 0 and 1000.\n");
289 // intentionally not checking that argv[2], the virtualizer strength, is between 0 and 100
    [all...]
  /external/icu4c/test/cintltst/
capitst.c 50 int32_t strength = UCOL_PRIMARY; local
61 while(strength <= UCOL_QUATERNARY && strength <= ucol_getAttribute(coll,UCOL_STRENGTH, &error_code)) {
65 if(strength > UCOL_PRIMARY) {
72 if(ucol_getAttribute(coll,UCOL_CASE_LEVEL, &error_code) == UCOL_ON && strength == UCOL_SECONDARY && doneCase == FALSE) {
74 } else if(ucol_getAttribute(coll,UCOL_CASE_LEVEL, &error_code) == UCOL_OFF || doneCase == TRUE || strength != UCOL_SECONDARY) {
75 strength ++;
81 if(strength == UCOL_QUATERNARY && ucol_getAttribute(coll,UCOL_ALTERNATE_HANDLING, &error_code) == UCOL_NON_IGNORABLE) {
162 {UCOL_STRENGTH, {UCOL_PRIMARY, UCOL_SECONDARY, UCOL_TERTIARY, UCOL_QUATERNARY, UCOL_IDENTICAL}, 5, UCOL_SHIFTED},/* attribute for strength */
372 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object has the wrong strength");
1853 UColAttributeValue strength; local
    [all...]
cmsccoll.c 372 fprintf(stderr, " strength: %s\n Sortkey: ", strengthsC[k]);
533 uint32_t strength = 0; local
573 strength = src.parsedToken.strength;
615 if(beforeStrength < strength) {
616 strength = beforeStrength;
622 switch(strength){
646 if(before == TRUE && strength != UCOL_TOK_RESET) { /* first and second were swapped */
740 static char *getRelationSymbol(UCollationResult res, uint32_t strength, char *buffer) {
743 if(res == UCOL_EQUAL || strength == 0xdeadbeef)
918 uint32_t strength = 0; local
1083 uint32_t strength = 0; local
2959 uint32_t strength = 0; local
    [all...]
  /external/svox/pico/lib/
picospho.c 560 /* BOUND(<bound strength><phrase type>) */
561 /* insert bound strength */
708 /** Calculate bound strength modified by transduction
710 * Given the original bound strength 'orig' and the desired target strength 'target' (suggested by fst),
711 * calculate the modified bound strength.
713 * @param orig original bound strength
714 * @param target target bound strength
715 * @return resulting bound strength
737 /** Calculate bound strength modified by a \<break> comman
851 picoos_uint8 strength; local
    [all...]
  /external/icu4c/i18n/unicode/
ucol.h 96 /** Primary collation strength */
98 /** Secondary collation strength */
100 /** Tertiary collation strength */
102 /** Default collation strength */
105 /** Quaternary collation strength */
107 /** Identical collation strength */
152 * Use this to set the strength of a Collator object.
157 * differences. Use this to set the strength of a Collator object.
162 * all comparison differences. Use this to set the strength of a Collator
170 * UCollationStrength is also used to determine the strength of sort keys
    [all...]

Completed in 1370 milliseconds

12 3 4