HomeSort by relevance Sort by last modified time
    Searched refs:Hex (Results 151 - 175 of 263) sorted by null

1 2 3 4 5 67 8 91011

  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstString.java 21 import com.android.dx.util.Hex;
171 throw new IllegalArgumentException("bad utf-8 byte " + Hex.u1(value) +
172 " at offset " + Hex.u4(offset));
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchHandlerList.java 21 import com.android.dexgen.util.Hex;
90 sb.append(Hex.u2or4(entry.getHandler()));
ArrayData.java 24 import com.android.dexgen.util.Hex;
188 sb.append(Hex.u2(baseAddress));
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
UniformListItem.java 20 import com.android.dexgen.util.Hex;
194 out.annotate(4, " size: " + Hex.u4(size));
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlock.java 20 import com.android.dexgen.util.Hex;
268 return '{' + Hex.u2(label) + '}';
RopMethod.java 20 import com.android.dexgen.util.Hex;
101 throw new RuntimeException("no such block: " + Hex.u2(label));
AccessFlags.java 19 import com.android.dexgen.util.Hex;
369 sb.append(Hex.u2(extra));
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 24 import com.android.dx.util.Hex;
130 "attributes_count: " + Hex.u2(sz));
StdAttributeFactory.java 57 import com.android.dx.util.Hex;
225 "max_stack: " + Hex.u2(maxStack));
227 "max_locals: " + Hex.u2(maxLocals));
229 "code_length: " + Hex.u4(codeLength));
258 Hex.u2(exceptionTableLength));
281 Hex.u2(startPc) + ".." + Hex.u2(endPc) +
282 " -> " + Hex.u2(handlerPc) + " " +
388 "number_of_exceptions: " + Hex.u2(count));
417 "number_of_classes: " + Hex.u2(count))
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchHandlerList.java 21 import com.android.dx.util.Hex;
90 sb.append(Hex.u2or4(entry.getHandler()));
  /dalvik/dx/src/com/android/dx/dex/file/
UniformListItem.java 20 import com.android.dx.util.Hex;
192 out.annotate(4, " size: " + Hex.u4(size));
ValueEncoder.java 41 import com.android.dx.util.Hex;
276 out.annotate(" size: " + Hex.u4(size));
317 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
327 out.annotate(" size: " + Hex.u4(size));
341 out.annotate(" name_idx: " + Hex.u4(nameIdx) + " // " +
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlock.java 20 import com.android.dx.util.Hex;
268 return '{' + Hex.u2(label) + '}';
RopMethod.java 19 import com.android.dx.util.Hex;
100 throw new RuntimeException("no such block: " + Hex.u2(label));
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
CatchHandlerList.java 21 import com.android.dx.util.Hex;
90 sb.append(Hex.u2or4(entry.getHandler()));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
UniformListItem.java 20 import com.android.dx.util.Hex;
194 out.annotate(4, " size: " + Hex.u4(size));
ValueEncoder.java 40 import com.android.dx.util.Hex;
275 out.annotate(" size: " + Hex.u4(size));
316 out.annotate(" type_idx: " + Hex.u4(typeIdx) + " // " +
326 out.annotate(" size: " + Hex.u4(size));
340 out.annotate(" name_idx: " + Hex.u4(nameIdx) + " // " +
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlock.java 20 import com.android.dx.util.Hex;
268 return '{' + Hex.u2(label) + '}';
RopMethod.java 20 import com.android.dx.util.Hex;
101 throw new RuntimeException("no such block: " + Hex.u2(label));
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_print.c 65 static const char Hex[]="0123456789ABCDEF";
91 *(p++)=Hex[v>>4];
92 *(p++)=Hex[v&0x0f];
189 /* a is the start of the hex digits, and it is 'i' long */
200 /* i is the number of hex digests; */
203 j=i; /* least significant 'hex' */
349 if (BIO_write(bp,&(Hex[v]),1) != 1)
  /external/openssl/crypto/bn/
bn_print.c 65 static const char Hex[]="0123456789ABCDEF";
91 *(p++)=Hex[v>>4];
92 *(p++)=Hex[v&0x0f];
189 /* a is the start of the hex digits, and it is 'i' long */
200 /* i is the number of hex digests; */
203 j=i; /* least significant 'hex' */
349 if (BIO_write(bp,&(Hex[v]),1) != 1)
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
InstructionIterator.java 34 import org.jf.dexlib.Util.Hex;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
Hex.java 19 * Basic hex operations: from byte array to string and vice versa.
23 public class Hex {
79 * contain non-hex strings and we want to make sure the provider won't crash even with such
  /dalvik/dx/src/com/android/dx/cf/code/
LocalsArraySet.java 23 import com.android.dx.util.Hex;
133 + Hex.u2(label) + ')');
155 + Hex.u2(label) + ")\n");
285 "Merging locals set for caller block " + Hex.u2(i));
326 + Hex.u2(i));
ExecutionStack.java 22 import com.android.dx.util.Hex;
85 String idx = (i == limit) ? "top0" : Hex.u2(limit - i);

Completed in 3843 milliseconds

1 2 3 4 5 67 8 91011