Searched refs:strength (Results 1 - 25 of 41) sorted by relevance

12

/macosx-10.10.1/vim-55/src/xxd/
H A DMake_os2.mak4 CFLAGS=-O2 -fno-strength-reduce -DOS2
/macosx-10.10.1/vim-55/src/tee/
H A DMakefile4 CFLAGS=-O2 -fno-strength-reduce
/macosx-10.10.1/ICU-531.30/icuSources/i18n/
H A Dcollationbuilder.cpp108 RuleBasedCollator::RuleBasedCollator(const UnicodeString &rules, ECollationStrength strength, argument
116 internalBuildTailoring(rules, strength, UCOL_DEFAULT, NULL, NULL, errorCode);
132 ECollationStrength strength,
141 internalBuildTailoring(rules, strength, decompositionMode, NULL, NULL, errorCode);
158 int32_t strength,
182 if((strength != UCOL_DEFAULT && strength != ts.getStrength()) ||
194 if(strength != UCOL_DEFAULT) {
195 ownedSettings->setStrength(strength, 0, errorCode);
301 CollationBuilder::addReset(int32_t strength, cons argument
131 RuleBasedCollator(const UnicodeString &rules, ECollationStrength strength, UColAttributeValue decompositionMode, UErrorCode &errorCode) argument
157 internalBuildTailoring(const UnicodeString &rules, int32_t strength, UColAttributeValue decompositionMode, UParseError *outParseError, UnicodeString *outReason, UErrorCode &errorCode) argument
492 int32_t strength = UCOL_PRIMARY; local
657 addRelation(int32_t strength, const UnicodeString &prefix, const UnicodeString &str, const UnicodeString &extension, const char *&parserErrorReason, UErrorCode &errorCode) argument
772 findOrInsertNodeForCEs(int32_t strength, const char *&parserErrorReason, UErrorCode &errorCode) argument
807 findOrInsertNodeForRootCE(int64_t ce, int32_t strength, UErrorCode &errorCode) argument
922 insertTailoredNodeAfter(int32_t index, int32_t strength, UErrorCode &errorCode) argument
1046 int32_t strength = ceStrength(ce); local
1393 int32_t strength = strengthFromNode(node); local
1536 countTailoredNodes(const int64_t *nodesArray, int32_t i, int32_t strength) argument
1613 ucol_openRules(const UChar *rules, int32_t rulesLength, UColAttributeValue normalizationMode, UCollationStrength strength, UParseError *parseError, UErrorCode *pErrorCode) argument
[all...]
H A Dcollationbuilder.h57 virtual void addReset(int32_t strength, const UnicodeString &str,
64 virtual void addRelation(int32_t strength, const UnicodeString &prefix,
70 * for the CE + strength.
72 int32_t findOrInsertNodeForCEs(int32_t strength, const char *&parserErrorReason,
74 int32_t findOrInsertNodeForRootCE(int64_t ce, int32_t strength, UErrorCode &errorCode);
83 * Skips over nodes of weaker strength to maintain collation order
87 int32_t insertTailoredNodeAfter(int32_t index, int32_t strength, UErrorCode &errorCode);
98 * Finds the node which implies or contains a common=05 weight of the given strength
102 * Always returns the input index if that node is no stronger than the given strength.
104 int32_t findCommonNode(int32_t index, int32_t strength) cons
175 tempCEFromIndexAndStrength(int32_t index, int32_t strength) argument
253 nodeFromStrength(int32_t strength) argument
[all...]
H A Dcollationruleparser.h74 * strength=UCOL_IDENTICAL for &str.
75 * strength=UCOL_PRIMARY/UCOL_SECONDARY/UCOL_TERTIARY for &[before n]str where n=1/2/3.
77 virtual void addReset(int32_t strength, const UnicodeString &str,
80 * Adds a relation with strength and prefix | str / extension.
82 virtual void addRelation(int32_t strength, const UnicodeString &prefix,
150 void parseRelationStrings(int32_t strength, int32_t i, UErrorCode &errorCode);
151 void parseStarredCharacters(int32_t strength, int32_t i, UErrorCode &errorCode);
H A Dcollationruleparser.cpp146 int32_t strength = result & STRENGTH_MASK; local
150 if(strength != resetStrength) {
151 setParseError("reset-before strength differs from its first relation", errorCode);
155 if(strength < resetStrength) {
156 setParseError("reset-before strength followed by a stronger relation", errorCode);
163 parseRelationStrings(strength, i, errorCode);
165 parseStarredCharacters(strength, i, errorCode);
212 int32_t strength; local
223 strength = UCOL_QUATERNARY;
225 strength
258 parseRelationStrings(int32_t strength, int32_t i, UErrorCode &errorCode) argument
290 parseStarredCharacters(int32_t strength, int32_t i, UErrorCode &errorCode) argument
[all...]
H A Dusrchimp.h83 UCollationStrength strength; member in class:UCollationPCE
181 UCollationStrength strength; member in struct:UStringSearch
H A Ducoleitr.cpp196 strength = coll.getAttribute(UCOL_STRENGTH, status);
214 switch(strength) {
242 if (strength >= UCOL_QUATERNARY) {
249 if (strength >= UCOL_QUATERNARY) {
476 // TODO: The old code masked the order according to strength and then did a binary search.
H A Dcollationcompare.cpp187 int32_t strength = CollationSettings::getStrength(options); local
192 if(strength == UCOL_PRIMARY) {
H A Dusearch.cpp60 * Getting the mask for collation strength
61 * @param strength collation strength
65 inline uint32_t getMask(UCollationStrength strength) argument
67 switch (strength)
159 if (strsrch->strength >= UCOL_QUATERNARY) {
166 } else if (strsrch->strength >= UCOL_QUATERNARY && sourcece == UCOL_IGNORABLE) {
441 // Since the strength is primary, accents are ignored in the pattern.
442 if (strsrch->strength == UCOL_PRIMARY) {
1074 if (strsrch->strength !
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dssearch.h43 const char *name, const char *strength, uint32_t seed);
H A Dsrchtest.h43 const UCollationStrength &strength) const;
H A Dssearch.cpp158 // Get the requested collation strength.
161 const UnicodeString *strength = testCase->getAttribute("strength"); local
163 if (strength==NULL) { collatorStrength = UCOL_TERTIARY;}
164 else if (*strength=="PRIMARY") { collatorStrength = UCOL_PRIMARY;}
165 else if (*strength=="SECONDARY") { collatorStrength = UCOL_SECONDARY;}
166 else if (*strength=="TERTIARY") { collatorStrength = UCOL_TERTIARY;}
167 else if (*strength=="QUATERNARY") { collatorStrength = UCOL_QUATERNARY;}
168 else if (*strength=="IDENTICAL") { collatorStrength = UCOL_IDENTICAL;}
170 // Bogus value supplied for strength
1305 monkeyTestCase(UCollator *coll, const UnicodeString &testCase, const UnicodeString &pattern, const UnicodeString &altPattern, const char *name, const char *strength, uint32_t seed) argument
[all...]
H A Dsrchtest.cpp239 const UCollationStrength &strength) const
241 switch (strength)
486 collator->setStrength(getECollationStrength(search->strength));
545 collator->setStrength(getECollationStrength(search->strength));
598 collator->setStrength(getECollationStrength(search->strength));
919 collator->setStrength(getECollationStrength(search->strength));
1072 tailored->setStrength(getECollationStrength(COLLATOR[1].strength));
1120 m_en_us_->setStrength(getECollationStrength(PATTERN[0].strength));
1305 search.strength));
1640 getECollationStrength(IGNORABLE[count].strength),
[all...]
H A Dcolldata.cpp44 UCollationStrength strength = ucol_getStrength(coll); local
57 switch (strength)
79 if (strength >= UCOL_QUATERNARY) {
/macosx-10.10.1/ipsec-286.1.1/ipsec-tools/racoon/
H A Dremoteconf.h61 int strength; /* for isakmp/ipsec */ member in struct:secprotospec
/macosx-10.10.1/ICU-531.30/icuSources/i18n/unicode/
H A Ducol.h91 /** Primary collation strength */
93 /** Secondary collation strength */
95 /** Tertiary collation strength */
97 /** Default collation strength */
100 /** Quaternary collation strength */
102 /** Identical collation strength */
205 * Use this to set the strength of a Collator object.
210 * differences. Use this to set the strength of a Collator object.
215 * all comparison differences. Use this to set the strength of a Collator
223 * UCollationStrength is also used to determine the strength o
[all...]
/macosx-10.10.1/ICU-531.30/icuSources/test/cintltst/
H A Dcallcoll.c59 /* perform test with strength PRIMARY */
62 /* perform test with strength SECONDARY */
65 /* perform test with strength tertiary */
68 /*perform tests with strength Identical */
147 int32_t strength = UCOL_PRIMARY; local
157 while(strength <= UCOL_QUATERNARY && strength <= ucol_getStrength(coll)) {
158 if(strength > UCOL_PRIMARY) {
165 if(ucol_getAttribute(coll, UCOL_CASE_LEVEL, &errorCode) == UCOL_ON && strength == UCOL_SECONDARY && doneCase == FALSE) {
167 } else if(ucol_getAttribute(coll, UCOL_CASE_LEVEL, &errorCode) == UCOL_OFF || doneCase == TRUE || strength !
[all...]
H A Dcapitst.c109 {UCOL_STRENGTH, {UCOL_PRIMARY, UCOL_SECONDARY, UCOL_TERTIARY, UCOL_QUATERNARY, UCOL_IDENTICAL}, 5, UCOL_SHIFTED},/* attribute for strength */
349 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object has the wrong strength");
350 doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary difference");
354 doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object's strength is secondary difference");
355 doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength is primary difference");
356 doAssert( (ucol_getStrength(col) == UCOL_SECONDARY), "collation object has the wrong strength");
406 doAssert( (ucol_getStrength(col) != UCOL_TERTIARY), "collation object has the wrong strength");
407 doAssert( (ucol_getStrength(col) == UCOL_PRIMARY), "collation object's strength is not primary difference");
411 doAssert( (ucol_getStrength(col) == UCOL_TERTIARY), "collation object's strength is not tertiary difference");
412 doAssert( (ucol_getStrength(col) != UCOL_PRIMARY), "collation object's strength i
1898 UColAttributeValue strength; local
[all...]
/macosx-10.10.1/JavaScriptCore-7600.1.17/icu/unicode/
H A Ducol.h96 /** 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 o
[all...]
/macosx-10.10.1/WTF-7600.1.24/icu/unicode/
H A Ducol.h96 /** 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 o
[all...]
/macosx-10.10.1/OpenSSL098-52/src/
H A Dopenssl.spec22 protocols as well as a full-strength general purpose cryptography library.
43 protocols as well as a full-strength general purpose cryptography library.
64 protocols as well as a full-strength general purpose cryptography library.
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/libraries/libldap/
H A Dtls_m.c201 int bits; /* bits of strength */
203 int strength; /* LOW, MEDIUM, HIGH */ member in struct:__anon3012
223 /* cipher strength */
552 int strength = 0; local
588 strength |= SSL_HIGH;
590 strength |= SSL_MEDIUM;
592 strength |= SSL_LOW;
594 strength |= SSL_EXPORT40|SSL_EXPORT56;
596 strength |= SSL_EXPORT40;
598 strength |
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/include/security_keychain/
H A DSecKeyPriv.h137 @abstract Returns key strength in bits for the given key.
140 @param strength On return, the key strength in bits.
143 OSStatus SecKeyGetStrengthInBits(SecKeyRef key, const CSSM_X509_ALGORITHM_IDENTIFIER *algid, unsigned int *strength);
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_keychain/Security/
H A DSecKeyPriv.h137 @abstract Returns key strength in bits for the given key.
140 @param strength On return, the key strength in bits.
143 OSStatus SecKeyGetStrengthInBits(SecKeyRef key, const CSSM_X509_ALGORITHM_IDENTIFIER *algid, unsigned int *strength);

Completed in 476 milliseconds

12