/external/chromium_org/third_party/openssl/openssl/crypto/lhash/ |
D | lhash.c | 131 #define LH_ITERATION_RESET(lh) do { \ argument 136 #define LH_ITERATION_IS_ACTIVE(lh) ((lh)->iteration_state >= 2) argument 140 #define LH_ITERATION_INCREMENT_DEPTH(lh) do { \ argument 146 #define LH_ITERATION_DECREMENT_DEPTH(lh) do { \ argument 151 #define LH_ITERATION_IS_MUTATED(lh) (((lh)->iteration_state & 1) != 0) argument 154 #define LH_ITERATION_SET_MUTATED(lh) do { \ argument 180 #define LH_SHOULD_EXPAND(lh) \ argument 213 #define LH_SHOULD_CONTRACT(lh) \ argument 266 void lh_free(_LHASH *lh) in lh_free() 288 void *lh_insert(_LHASH *lh, void *data) in lh_insert() [all …]
|
D | lh_stats.c | 73 void lh_stats(LHASH *lh, FILE *out) in lh_stats() 99 void lh_node_stats(LHASH *lh, FILE *out) in lh_node_stats() 112 void lh_node_usage_stats(LHASH *lh, FILE *out) in lh_node_usage_stats() 142 void lh_stats(const _LHASH *lh, FILE *fp) in lh_stats() 154 void lh_node_stats(const _LHASH *lh, FILE *fp) in lh_node_stats() 166 void lh_node_usage_stats(const _LHASH *lh, FILE *fp) in lh_node_usage_stats() 180 void lh_stats_bio(const _LHASH *lh, BIO *out) in lh_stats_bio() 208 void lh_node_stats_bio(const _LHASH *lh, BIO *out) in lh_node_stats_bio() 221 void lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) in lh_node_usage_stats_bio()
|
D | lhash.h | 174 #define lh_error(lh) ((lh)->error) argument 204 #define CHECKED_LHASH_OF(type,lh) \ argument 210 #define LHM_lh_error(type, lh) \ argument 212 #define LHM_lh_insert(type, lh, inst) \ argument 215 #define LHM_lh_retrieve(type, lh, inst) \ argument 218 #define LHM_lh_delete(type, lh, inst) \ argument 221 #define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn) argument 222 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ argument 224 #define LHM_lh_num_items(type, lh) lh_num_items(CHECKED_LHASH_OF(type, lh)) argument 225 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load) argument [all …]
|
/external/openssl/crypto/lhash/ |
D | lh_stats.c | 73 void lh_stats(LHASH *lh, FILE *out) in lh_stats() 99 void lh_node_stats(LHASH *lh, FILE *out) in lh_node_stats() 112 void lh_node_usage_stats(LHASH *lh, FILE *out) in lh_node_usage_stats() 142 void lh_stats(const _LHASH *lh, FILE *fp) in lh_stats() 154 void lh_node_stats(const _LHASH *lh, FILE *fp) in lh_node_stats() 166 void lh_node_usage_stats(const _LHASH *lh, FILE *fp) in lh_node_usage_stats() 180 void lh_stats_bio(const _LHASH *lh, BIO *out) in lh_stats_bio() 208 void lh_node_stats_bio(const _LHASH *lh, BIO *out) in lh_node_stats_bio() 221 void lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) in lh_node_usage_stats_bio()
|
D | lhash.c | 157 void lh_free(_LHASH *lh) in lh_free() 179 void *lh_insert(_LHASH *lh, void *data) in lh_insert() 217 void *lh_delete(_LHASH *lh, const void *data) in lh_delete() 248 void *lh_retrieve(_LHASH *lh, const void *data) in lh_retrieve() 270 static void doall_util_fn(_LHASH *lh, int use_arg, LHASH_DOALL_FN_TYPE func, in doall_util_fn() 300 void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func) in lh_doall() 305 void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg) in lh_doall_arg() 310 static void expand(_LHASH *lh) in expand() 366 static void contract(_LHASH *lh) in contract() 405 static LHASH_NODE **getrn(_LHASH *lh, const void *data, unsigned long *rhash) in getrn() [all …]
|
D | lhash.h | 173 #define lh_error(lh) ((lh)->error) argument 203 #define CHECKED_LHASH_OF(type,lh) \ argument 209 #define LHM_lh_error(type, lh) \ argument 211 #define LHM_lh_insert(type, lh, inst) \ argument 214 #define LHM_lh_retrieve(type, lh, inst) \ argument 217 #define LHM_lh_delete(type, lh, inst) \ argument 220 #define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn) argument 221 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ argument 223 #define LHM_lh_num_items(type, lh) lh_num_items(CHECKED_LHASH_OF(type, lh)) argument 224 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load) argument [all …]
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
D | lhash.h | 174 #define lh_error(lh) ((lh)->error) argument 204 #define CHECKED_LHASH_OF(type,lh) \ argument 210 #define LHM_lh_error(type, lh) \ argument 212 #define LHM_lh_insert(type, lh, inst) \ argument 215 #define LHM_lh_retrieve(type, lh, inst) \ argument 218 #define LHM_lh_delete(type, lh, inst) \ argument 221 #define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn) argument 222 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ argument 224 #define LHM_lh_num_items(type, lh) lh_num_items(CHECKED_LHASH_OF(type, lh)) argument 225 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load) argument [all …]
|
D | safestack.h | 2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) argument 2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) argument 2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) argument 2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) argument 2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ argument 2435 #define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) argument 2436 #define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) argument 2437 #define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) argument 2438 #define lh_ADDED_OBJ_node_stats_bio(lh,out) \ argument 2440 #define lh_ADDED_OBJ_node_usage_stats_bio(lh,out) \ argument [all …]
|
/external/openssl/include/openssl/ |
D | lhash.h | 173 #define lh_error(lh) ((lh)->error) argument 203 #define CHECKED_LHASH_OF(type,lh) \ argument 209 #define LHM_lh_error(type, lh) \ argument 211 #define LHM_lh_insert(type, lh, inst) \ argument 214 #define LHM_lh_retrieve(type, lh, inst) \ argument 217 #define LHM_lh_delete(type, lh, inst) \ argument 220 #define LHM_lh_doall(type, lh,fn) lh_doall(CHECKED_LHASH_OF(type, lh), fn) argument 221 #define LHM_lh_doall_arg(type, lh, fn, arg_type, arg) \ argument 223 #define LHM_lh_num_items(type, lh) lh_num_items(CHECKED_LHASH_OF(type, lh)) argument 224 #define LHM_lh_down_load(type, lh) (CHECKED_LHASH_OF(type, lh)->down_load) argument [all …]
|
D | safestack.h | 2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) argument 2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) argument 2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) argument 2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) argument 2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ argument 2435 #define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) argument 2436 #define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) argument 2437 #define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) argument 2438 #define lh_ADDED_OBJ_node_stats_bio(lh,out) \ argument 2440 #define lh_ADDED_OBJ_node_usage_stats_bio(lh,out) \ argument [all …]
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMTreeWalker.java | 232 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in startNode() local 303 LexicalHandler lh = isLexH in startNode() local 394 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in endNode() local
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | TreeWalker.java | 293 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in startNode() local 384 LexicalHandler lh = isLexH in startNode() local 517 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in endNode() local
|
/external/skia/experimental/Intersection/ |
D | ActiveEdge_Test.cpp | 49 static bool operator_less_than(const UnitTest::ActiveEdge& lh, in operator_less_than()
|
/external/chromium_org/third_party/skia/experimental/Intersection/ |
D | ActiveEdge_Test.cpp | 49 static bool operator_less_than(const UnitTest::ActiveEdge& lh, in operator_less_than()
|
/external/openssl/crypto/stack/ |
D | safestack.h | 2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) argument 2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) argument 2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) argument 2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) argument 2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ argument 2435 #define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) argument 2436 #define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) argument 2437 #define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) argument 2438 #define lh_ADDED_OBJ_node_stats_bio(lh,out) \ argument 2440 #define lh_ADDED_OBJ_node_usage_stats_bio(lh,out) \ argument [all …]
|
/external/chromium_org/third_party/openssl/openssl/crypto/stack/ |
D | safestack.h | 2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) argument 2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) argument 2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) argument 2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) argument 2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ argument 2435 #define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) argument 2436 #define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) argument 2437 #define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) argument 2438 #define lh_ADDED_OBJ_node_stats_bio(lh,out) \ argument 2440 #define lh_ADDED_OBJ_node_usage_stats_bio(lh,out) \ argument [all …]
|
/external/skia/tests/ |
D | PathOpsAngleTest.cpp | 194 static int After(const SkOpAngle& lh, const SkOpAngle& rh) { in After() 198 static int ConvexHullOverlaps(const SkOpAngle& lh, const SkOpAngle& rh) { in ConvexHullOverlaps() 202 static int Orderable(const SkOpAngle& lh, const SkOpAngle& rh) { in Orderable() 206 static int EndsIntersect(const SkOpAngle& lh, const SkOpAngle& rh) { in EndsIntersect() 210 static void SetNext(SkOpAngle& lh, SkOpAngle& rh) { in SetNext()
|
/external/chromium_org/third_party/skia/tests/ |
D | PathOpsAngleTest.cpp | 194 static int After(const SkOpAngle& lh, const SkOpAngle& rh) { in After() 198 static int ConvexHullOverlaps(const SkOpAngle& lh, const SkOpAngle& rh) { in ConvexHullOverlaps() 202 static int Orderable(const SkOpAngle& lh, const SkOpAngle& rh) { in Orderable() 206 static int EndsIntersect(const SkOpAngle& lh, const SkOpAngle& rh) { in EndsIntersect() 210 static void SetNext(SkOpAngle& lh, SkOpAngle& rh) { in SetNext()
|
/external/apache-xml/src/main/java/org/apache/xpath/objects/ |
D | XStringForChars.java | 155 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) in dispatchAsComment()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | TreeWalker.java | 319 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in startNode() local
|
D | XMLString.java | 57 public abstract void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) in dispatchAsComment()
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | ucol_bld.cpp | 288 inline int32_t ucol_inv_getNext(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) { in ucol_inv_getNext() 321 static void ucol_inv_getGapPositions(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *statu… in ucol_inv_getGapPositions() 736 U_CFUNC void ucol_initBuffers(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) { in ucol_initBuffers() 842 U_CFUNC void ucol_createElements(UColTokenParser *src, tempUCATable *t, UColTokListHeader *lh, UErr… in ucol_createElements()
|
/external/jhead/ |
D | jpgfile.c | 142 int ll,lh, got; in ReadJpegSections() local 340 int ll,lh, got; in ReadJpegSectionsFromBuffer() local
|
/external/opencv/cxcore/src/ |
D | cxsvd.cpp | 398 int lh = nu - i; in icvSVD_64f() local 442 int lh = nv - i; in icvSVD_64f() local 795 int lh = nu - i; in icvSVD_32f() local 839 int lh = nv - i; in icvSVD_32f() local
|
/external/chromium_org/third_party/bintrees/bintrees/ |
D | ctrees.c | 536 int lh, rh, max; in avl_insert() local 634 int lh = height(up[top]->link[upd[top]]); in avl_remove() local
|