HomeSort by relevance Sort by last modified time
    Searched refs:HASH (Results 1 - 25 of 46) sorted by null

1 2

  /external/clang/test/Preprocessor/
hash_space.c 5 #define HASH #
6 HASH define foo bar
  /external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
glcpp-lex.l 76 HASH ^{HSPACE}*#{HSPACE}*
123 {HASH}version {
131 {HASH}(extension|pragma)[^\n]+ {
138 {HASH}line {
143 {HASH}ifdef {
149 {HASH}ifndef {
155 {HASH}if/[^_a-zA-Z0-9] {
161 {HASH}elif {
167 {HASH}else {
172 {HASH}endif
    [all...]
glcpp-parse.y 163 %token COMMA_FINAL DEFINED ELIF_EXPANDED HASH HASH_DEFINE FUNC_IDENTIFIER OBJ_IDENTIFIER HASH_ELIF HASH_ELSE HASH_ENDIF HASH_IF HASH_IFDEF HASH_IFNDEF HASH_LINE HASH_UNDEF HASH_VERSION IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE
199 | HASH non_directive
357 | HASH NEWLINE
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp-lex.l 76 HASH ^{HSPACE}*#{HSPACE}*
123 {HASH}version {
131 {HASH}(extension|pragma)[^\n]+ {
138 {HASH}line {
143 {HASH}ifdef {
149 {HASH}ifndef {
155 {HASH}if/[^_a-zA-Z0-9] {
161 {HASH}elif {
167 {HASH}else {
172 {HASH}endif
    [all...]
glcpp-parse.y 163 %token COMMA_FINAL DEFINED ELIF_EXPANDED HASH HASH_DEFINE FUNC_IDENTIFIER OBJ_IDENTIFIER HASH_ELIF HASH_ELSE HASH_ENDIF HASH_IF HASH_IFDEF HASH_IFNDEF HASH_LINE HASH_UNDEF HASH_VERSION IDENTIFIER IF_EXPANDED INTEGER INTEGER_STRING LINE_EXPANDED NEWLINE OTHER PLACEHOLDER SPACE
199 | HASH non_directive
357 | HASH NEWLINE
    [all...]
  /external/chromium_org/v8/tools/
android-sync.sh 46 local HASH=$(md5sum $1)
47 echo ${HASH%% *}
51 local HASH=$(md5 $1)
52 echo ${HASH} | cut -f2 -d "=" | cut -f2 -d " "
merge-to-branch.sh 148 || die "Cannot determine git hash for r$REVISION"
168 for HASH in ${PATCH_COMMIT_HASHES[@]} ; do
169 PATCH_MERGE_DESCRIPTION=$(git log -1 --format=%s $HASH)
173 for HASH in ${PATCH_COMMIT_HASHES[@]} ; do
174 BUG=$(git log -1 $HASH | grep "BUG=" | awk -F '=' '{print $NF}')
194 for HASH in ${PATCH_COMMIT_HASHES[@]} ; do
195 echo "Applying patch for $HASH to $MERGE_TO_BRANCH..."
196 git log -1 -p $HASH > "$TEMPORARY_PATCH_FILE"
  /external/chromium_org/third_party/openssl/openssl/crypto/dsa/
dsa_depr.c 64 #define HASH EVP_sha()
69 #define HASH EVP_sha1()
dsa_gen.c 64 #define HASH EVP_sha()
69 #define HASH EVP_sha1()
  /external/openssl/crypto/dsa/
dsa_depr.c 64 #define HASH EVP_sha()
69 #define HASH EVP_sha1()
dsa_gen.c 64 #define HASH EVP_sha()
69 #define HASH EVP_sha1()
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glcpp-parse.h 43 HASH = 261,
81 #define HASH 261
  /external/v8/tools/
merge-to-branch.sh 128 || die "Cannot determine git hash for r$REVISION"
142 for HASH in ${PATCH_COMMIT_HASHES[@]} ; do
143 PATCH_MERGE_DESCRIPTION=$(git log -1 --format=%s $HASH)
147 for HASH in ${PATCH_COMMIT_HASHES[@]} ; do
148 BUG=$(git log -1 $HASH | grep "BUG=" | awk -F '=' '{print $NF}')
168 for HASH in ${PATCH_COMMIT_HASHES[@]} ; do
169 echo "Applying patch for $HASH to $MERGE_TO_BRANCH..."
170 git log -1 -p $HASH > "$TEMPORARY_PATCH_FILE"
  /frameworks/rs/cpu_ref/linkloader/lib/
ELFSectionHeader.cpp 46 CASE(NULL) CASE(PROGBITS) CASE(SYMTAB) CASE(STRTAB) CASE(RELA) CASE(HASH)
  /external/openssh/
deattack.c 68 /* Hash function (Input keys are cipher results) */
69 #define HASH(x) get_u32(x)
146 for (i = HASH(c) & (n - 1); h[i] != HASH_UNUSED;
  /external/elfutils/libebl/
eblsectiontypename.c 78 KNOWNSTYPE (HASH),
  /external/libppp/src/
pred.c 52 /* The following hash code is the heart of the algorithm:
53 * It builds a sliding hash sum of the previous 3-and-a-bit characters
55 * A better hash function would result in additional compression,
58 #define HASH(state, x) state->hash = (state->hash << 4) ^ (x)
62 u_short hash; member in struct:pred1_state
77 if (state->dict[state->hash] == *source) {
80 state->dict[state->hash] = *source;
83 HASH(state, *source++)
    [all...]
  /external/clang/lib/Basic/
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
199 // We use a perfect hash function here involving the length of the keyword,
204 #define HASH(LEN, FIRST, THIRD) \
207 case HASH(LEN, FIRST, THIRD): \
213 switch (HASH(Len, Name[0], Name[2])) {
245 #undef HASH
274 fprintf(stderr, "Hash density (#identifiers per bucket): %f\n",
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ggc.h 54 /* Used by the gt_pch_n_* routines. Register an object in the hash table. */
81 /* Structure for hash table cache marking. */
135 object, and the identifier hash table is treated as a weak
136 hash. */
208 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
209 htab_create_typed_alloc (SIZE, HASH, EQ, DEL, \
cpplib.h 98 OP(HASH, "#") /* digraphs */ \
560 /* The structure of a node in the hash table. The hash table has
572 /* Hash node flags. */
584 /* Different flavors of hash node. */
663 pointer. Otherwise you should pass in an initialized hash table
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ggc.h 54 /* Used by the gt_pch_n_* routines. Register an object in the hash table. */
81 /* Structure for hash table cache marking. */
135 object, and the identifier hash table is treated as a weak
136 hash. */
208 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
209 htab_create_typed_alloc (SIZE, HASH, EQ, DEL, \
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ggc.h 54 /* Used by the gt_pch_n_* routines. Register an object in the hash table. */
81 /* Structure for hash table cache marking. */
135 object, and the identifier hash table is treated as a weak
136 hash. */
208 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
209 htab_create_typed_alloc (SIZE, HASH, EQ, DEL, \
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ggc.h 54 /* Used by the gt_pch_n_* routines. Register an object in the hash table. */
81 /* Structure for hash table cache marking. */
135 object, and the identifier hash table is treated as a weak
136 hash. */
208 #define htab_create_ggc(SIZE, HASH, EQ, DEL) \
209 htab_create_typed_alloc (SIZE, HASH, EQ, DEL, \
  /external/qemu/android/skin/
keyset.c 90 _KEYSYM_(HASH,HASH) \
  /external/dropbear/libtomcrypt/src/prngs/
yarrow.c 44 /* these are the default hash/cipher combo used */
91 prng->yarrow.hash = register_hash(&sha256_desc);
93 prng->yarrow.hash = register_hash(&sha512_desc);
95 prng->yarrow.hash = register_hash(&tiger_desc);
97 prng->yarrow.hash = register_hash(&sha1_desc);
99 prng->yarrow.hash = register_hash(&rmd320_desc);
101 prng->yarrow.hash = register_hash(&rmd256_desc);
103 prng->yarrow.hash = register_hash(&rmd160_desc);
105 prng->yarrow.hash = register_hash(&rmd128_desc);
107 prng->yarrow.hash = register_hash(&md5_desc)
    [all...]

Completed in 1706 milliseconds

1 2