/external/chromium_org/third_party/openssl/openssl/patches/ |
fix_lhash_iteration.patch | 27 #define DOWN_LOAD (LH_LOAD_MULT) /* load times 256 (default 1) */ 105 + * (num_items // num_nodes) <= (down_load // LOAD_MULT) 106 + * (num_items * LOAD_MULT // num_nodes) <= down_load 107 + * (num_items * LOAD_MULT / num_nodes) + epsilon <= down_load 108 + * (num_items * LOAD_MULT / num_nodes) - down_load <= -epsilon 119 + * (num_items // num_nodes) < (down_load // LOAD_MULT) 122 + * (num_items * LOAD_MULT / num_nodes) - down_load < -epsilon 129 + * (num_items * LOAD_MULT / num_nodes) < down_load 134 + ((lh)->num_items*LH_LOAD_MULT/(lh)->num_nodes) < (lh)->down_load)) 164 - (lh->down_load >= (lh->num_items*LH_LOAD_MULT/lh->num_nodes)) [all...] |
/external/chromium_org/third_party/openssl/patches.chromium/ |
0006-lhashfix.patch | 56 + #define DOWN_LOAD (LH_LOAD_MULT) /* load times 256 (default 1) */ 134 ++ * (num_items // num_nodes) <= (down_load // LOAD_MULT) 135 ++ * (num_items * LOAD_MULT // num_nodes) <= down_load 136 ++ * (num_items * LOAD_MULT / num_nodes) + epsilon <= down_load 137 ++ * (num_items * LOAD_MULT / num_nodes) - down_load <= -epsilon 148 ++ * (num_items // num_nodes) < (down_load // LOAD_MULT) 151 ++ * (num_items * LOAD_MULT / num_nodes) - down_load < -epsilon 158 ++ * (num_items * LOAD_MULT / num_nodes) < down_load 163 ++ ((lh)->num_items*LH_LOAD_MULT/(lh)->num_nodes) < (lh)->down_load)) 193 +- (lh->down_load >= (lh->num_items*LH_LOAD_MULT/lh->num_nodes)) [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/lhash/ |
lhash.c | 109 #define DOWN_LOAD (LH_LOAD_MULT) /* load times 256 (default 1) */ 187 * (num_items // num_nodes) <= (down_load // LOAD_MULT) 188 * (num_items * LOAD_MULT // num_nodes) <= down_load 189 * (num_items * LOAD_MULT / num_nodes) + epsilon <= down_load 190 * (num_items * LOAD_MULT / num_nodes) - down_load <= -epsilon 201 * (num_items // num_nodes) < (down_load // LOAD_MULT) 204 * (num_items * LOAD_MULT / num_nodes) - down_load < -epsilon 211 * (num_items * LOAD_MULT / num_nodes) < down_load 216 ((lh)->num_items*LH_LOAD_MULT/(lh)->num_nodes) < (lh)->down_load)) 240 ret->down_load=DOWN_LOAD [all...] |
lh_stats.c | 95 fprintf(out,"down_load = %lu\n",lh->down_load); 204 BIO_printf(out,"down_load = %lu\n",lh->down_load);
|
lhash.h | 148 unsigned long down_load; /* load times 256 */ member in struct:lhash_st 225 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load)
|
/external/openssl/crypto/objects/ |
o_names.c | 353 unsigned long down_load; local 358 down_load=lh_OBJ_NAME_down_load(names_lh); 370 lh_OBJ_NAME_down_load(names_lh)=down_load;
|
/external/openssl/crypto/lhash/ |
lh_stats.c | 95 fprintf(out,"down_load = %lu\n",lh->down_load); 204 BIO_printf(out,"down_load = %lu\n",lh->down_load);
|
lhash.c | 108 #define DOWN_LOAD (LH_LOAD_MULT) /* load times 256 (default 1) */ 132 ret->down_load=DOWN_LOAD; 242 (lh->down_load >= (lh->num_items*LH_LOAD_MULT/lh->num_nodes)))
|
lhash.h | 148 unsigned long down_load; /* load times 256 */ member in struct:lhash_st 224 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load)
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
lhash.h | 148 unsigned long down_load; /* load times 256 */ member in struct:lhash_st 225 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load)
|
/external/openssl/include/openssl/ |
lhash.h | 148 unsigned long down_load; /* load times 256 */ member in struct:lhash_st 224 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load)
|
/external/openssl/ssl/ |
ssl_sess.c | 1002 i=CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load; 1003 CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load=0; 1006 CHECKED_LHASH_OF(SSL_SESSION, tp.cache)->down_load=i; [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 756 ('down_load', c_ulong), [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
infinite_recursion.py | 756 ('down_load', c_ulong), [all...] |