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

  /external/skia/src/pdf/
SkPDFFont.cpp 225 bool highNibble = true;
231 if (highNibble) {
233 highNibble = false;
236 highNibble = true;
240 if (!highNibble) {
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 891 private static int makeByte(int lowNibble, int highNibble) {
896 if ((highNibble & ~0xf) != 0) {
897 throw new IllegalArgumentException("bogus highNibble");
900 return lowNibble | (highNibble << 4);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java     [all...]

Completed in 71 milliseconds