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

  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1_MessageDigestImpl.java 76 int lastWord; //
84 lastWord = (buffer[BYTES_OFFSET] + 3)>>2 ; // computing of # of full words by shifting
93 // - lastWord < 14 - two last, these are 14 & 15, words in 16 word frame are free;
95 // - lastWord = 14 - only one last, namely 15-th, word in frame doesn't contain bytes;
97 // - lastWord > 14 - last word in frame is not full;
102 if ( lastWord < 15 ) {
103 i = lastWord;
105 if ( lastWord == 15 ) {
SHA1PRNG_SecureRandomImpl.java 287 int lastWord; // index of last word in frame containing bytes
294 lastWord = seed[BYTES_OFFSET] == 0 ? 0
305 lastWord = seed[BYTES_OFFSET] == 0 ? 0
324 // no need to set to "0" 3 words after "lastWord" and
326 for (i = lastWord + 3; i < FRAME_LENGTH + 2; i++) {
370 seed[lastWord] = (int) (counter >>> 32);
371 seed[lastWord + 1] = (int) (counter & 0xFFFFFFFF);
372 seed[lastWord + 2] = END_FLAGS[0];
376 seed[lastWord] |= (int) ((counter >>> RIGHT1[n]) & MASK[n]);
377 seed[lastWord + 1] = (int) ((counter >>> RIGHT2[n]) & 0xFFFFFFFF)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
thcoll.cpp 93 UnicodeString lastWord, word;
105 if (lastWord.length() > 0) {
106 Collator::EComparisonResult result = coll->compare(lastWord, word);
107 doTest(coll, lastWord, word, result);
109 lastWord = word;
140 UnicodeString lastWord, word;
152 if (lastWord.length() > 0) {
154 doTest(coll, lastWord, word, Collator::LESS);
155 int32_t result = coll->compare(lastWord, word);
164 + " compare(" + IntlTest::prettify(lastWord, str)
    [all...]
  /external/icu4c/test/intltest/
thcoll.cpp 94 UnicodeString lastWord, word;
106 if (lastWord.length() > 0) {
107 Collator::EComparisonResult result = coll->compare(lastWord, word);
108 doTest(coll, lastWord, word, result);
110 lastWord = word;
141 UnicodeString lastWord, word;
153 if (lastWord.length() > 0) {
154 int32_t result = coll->compare(lastWord, word);
163 + " compare(" + IntlTest::prettify(lastWord, str);
169 coll->getCollationKey(lastWord, k1, status)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SuggestedWords.java 304 final String lastWord = info.mWord.substring(indexOfLastSpace);
305 newSuggestions.add(new SuggestedWordInfo(lastWord, info.mScore, info.mKind,
LatinIME.java     [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
structs.h 376 WebRtc_UWord16 lastWord;
encode.c 378 ISACenc_obj->bitstr_obj.stream[transcodingParam.stream_index] = transcodingParam.lastWord;
entropy_coding.c     [all...]
  /external/chromium_org/third_party/codesighs/
msmap2tsv.c 291 char* lastWord(char* inString)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.forms_3.5.2.r36_v20100702.jar 

Completed in 268 milliseconds