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

  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
JCEBlockCipher.java 82 private String modeName = null;
168 modeName = Strings.toUpperCase(mode);
170 if (modeName.equals("ECB"))
175 else if (modeName.equals("CBC"))
181 else if (modeName.startsWith("OFB"))
184 if (modeName.length() != 3)
186 int wordSize = Integer.parseInt(modeName.substring(3));
197 else if (modeName.startsWith("CFB"))
200 if (modeName.length() != 3)
202 int wordSize = Integer.parseInt(modeName.substring(3))
    [all...]
BrokenJCEBlockCipher.java 147 String modeName = Strings.toUpperCase(mode);
149 if (modeName.equals("ECB"))
154 else if (modeName.equals("CBC"))
160 else if (modeName.startsWith("OFB"))
163 if (modeName.length() != 3)
165 int wordSize = Integer.parseInt(modeName.substring(3));
176 else if (modeName.startsWith("CFB"))
179 if (modeName.length() != 3)
181 int wordSize = Integer.parseInt(modeName.substring(3));
  /external/speex/include/speex/
speex.h 257 const char *modeName;
  /development/simulator/app/
PhoneData.h 336 PhoneMode* GetPhoneMode(const char* modeName);
PhoneData.cpp 778 PhoneMode* PhoneData::GetPhoneMode(const char* modeName)
783 if (strcmp((*ii).GetName(), modeName) == 0)

Completed in 291 milliseconds