/ndk/build/platforms/android-5/arch-arm/usr/include/sys/ |
exec_elf.h | 246 #define SHT_HASH 5 /* symbol hash table section */ 268 #define ELF_HASH ".hash" /* symbol hash table */ 438 #define DT_HASH 4 /* address of symbol hash table */
|
/ndk/build/platforms/android-5/arch-arm/usr/lib/ |
libGLESv2.so | |
liblog.so | |
/ndk/build/platforms/android-5/arch-x86/usr/include/sys/ |
exec_elf.h | 246 #define SHT_HASH 5 /* symbol hash table section */ 268 #define ELF_HASH ".hash" /* symbol hash table */ 438 #define DT_HASH 4 /* address of symbol hash table */
|
/ndk/build/platforms/android-8/arch-arm/usr/include/sys/ |
exec_elf.h | 246 #define SHT_HASH 5 /* symbol hash table section */ 268 #define ELF_HASH ".hash" /* symbol hash table */ 438 #define DT_HASH 4 /* address of symbol hash table */
|
/ndk/build/platforms/android-8/arch-arm/usr/lib/ |
libGLESv2.so | |
libjnigraphics.so | |
liblog.so | |
/ndk/build/platforms/android-8/arch-x86/usr/include/sys/ |
exec_elf.h | 246 #define SHT_HASH 5 /* symbol hash table section */ 268 #define ELF_HASH ".hash" /* symbol hash table */ 438 #define DT_HASH 4 /* address of symbol hash table */
|
/packages/apps/Email/src/com/android/exchange/utility/ |
SimpleIcsWriter.java | 72 // using a hash table.)
|
/prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/ |
tree-ssa-sccvn.h | 108 /* Hash the constant CONSTANT with distinguishing type incompatible
|
/sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/icons/ |
ImageFactory.java | 73 // Store the image in the hash, even if this failed. If it fails now, it will fail later.
|
/system/core/init/ |
init.h | 88 unsigned hash; member in struct:action
|
/system/core/mkbootimg/ |
mkbootimg.c | 211 /* put a hash of the contents in the header so boot images can be
|
/system/core/sh/ |
var.h | 53 struct var *next; /* next entry in hash list */
|
/dalvik/libcore/awt-kernel/src/main/java/java/awt/font/ |
NumericShaper.java | 520 * Returns a hash code of this NumericShaper. 522 * @return a hash code of this NumericShaper. 526 HashCode hash = new HashCode(); local 528 hash.append(fRanges); 529 hash.append(fDefaultContextIndex); 530 hash.append(fContextual); 532 return hash.hashCode(); [all...] |
/dalvik/libcore/nio/src/main/java/java/nio/ |
ByteBuffer.java | 646 * Calculates this buffer's hash code from the remaining chars. The 647 * position, limit, capacity and mark don't affect the hash code. 649 * @return the hash code calculated from the remaining bytes. 654 int hash = 0; local 656 hash = hash + get(myPosition++); 658 return hash; [all...] |
/dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
NumberFormatTest.java | [all...] |
/external/dbus/dbus/ |
dbus-auth.c | 410 /* Returns TRUE but with an empty string hash if the 419 DBusString *hash) 463 if (!_dbus_sha_compute (&to_hash, hash)) 639 * challenge, space, then SHA-1 hash of the concatenation of our 679 _dbus_verbose ("%s: zero-length client challenge or hash\n", 695 /* if cookie_id was invalid, then we get an empty hash */ 777 * spaces. We send back our challenge string and the correct hash. [all...] |
/frameworks/base/awt/java/awt/ |
Font.java | 1384 HashCode hash = new HashCode(); local [all...] |
BasicStroke.java | 384 * Returns hash code of this BasicStroke. 386 * @return the hash code of this BasicStroke. 390 HashCode hash = new HashCode(); local 391 hash.append(width); 392 hash.append(cap); 393 hash.append(join); 394 hash.append(miterLimit); 396 hash.append(dashPhase); 398 hash.append(element); 401 return hash.hashCode() [all...] |
/external/ppp/pppd/ |
eap.c | 816 /* Obscure the pseudonym with SHA1 hash */ 1073 eap_chap_response(esp, id, hash, name, namelen) 1076 u_char *hash; 1095 BCOPY(hash, outp, MD5_SIGNATURE_SIZE); 1322 u_char hash[MD5_SIGNATURE_SIZE]; local 1732 u_char hash[MD5_SIGNATURE_SIZE]; local [all...] |
/cts/tools/dasm/src/java_cup/ |
production.java | 287 * @param label_map a hash table mapping labels to positions in the RHS. 288 * @param type_map a hash table mapping labels to declared symbol types. 348 * @param label_map a hash table mapping labels to positions in the RHS. 349 * @param type_map a hash table mapping labels to declared symbol types. 724 /** Produce a hash code. */
|
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/net/ |
InetAddressTest.java | 496 assertFalse("Hash collision", hashCode == ip6HashCode); 497 assertFalse("Hash collision", ip6HashCode == ip6LOHashCode); 498 assertFalse("Hash collision", hashCode == ip6LOHashCode); 499 assertFalse("Hash collision", ip6LOHashCode == 0); 500 assertFalse("Hash collision", ip6LOHashCode == 1); [all...] |
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/ |
Field.java | 533 * Returns an integer hash code for this field. Objects which are equal 536 * The hash code for a Field is the exclusive-or combination of the hash 537 * code of the field's name and the hash code of the name of its declaring 540 * @return the hash code for this field [all...] |