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

1 2 3 4

  /external/openssl/crypto/lhash/
lhash.c 110 static void expand(_LHASH *lh);
111 static void contract(_LHASH *lh);
112 static LHASH_NODE **getrn(_LHASH *lh, const void *data, unsigned long *rhash);
157 void lh_free(_LHASH *lh)
162 if (lh == NULL)
165 for (i=0; i<lh->num_nodes; i++)
167 n=lh->b[i];
175 OPENSSL_free(lh->b);
176 OPENSSL_free(lh);
179 void *lh_insert(_LHASH *lh, void *data
    [all...]
lh_stats.c 73 void lh_stats(LHASH *lh, FILE *out)
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);
82 fprintf(out,"num_hash_calls = %lu\n",lh->num_hash_calls);
83 fprintf(out,"num_comp_calls = %lu\n",lh->num_comp_calls)
    [all...]
lhash.h 173 #define lh_error(lh) ((lh)->error)
176 void lh_free(_LHASH *lh);
177 void *lh_insert(_LHASH *lh, void *data);
178 void *lh_delete(_LHASH *lh, const void *data);
179 void *lh_retrieve(_LHASH *lh, const void *data);
180 void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func);
181 void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg);
183 unsigned long lh_num_items(const _LHASH *lh);
186 void lh_stats(const _LHASH *lh, FILE *out)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/lhash/
lhash.c 131 #define LH_ITERATION_RESET(lh) do { \
132 (lh)->iteration_state = 0; \
136 #define LH_ITERATION_IS_ACTIVE(lh) ((lh)->iteration_state >= 2)
140 #define LH_ITERATION_INCREMENT_DEPTH(lh) do { \
141 (lh)->iteration_state += 2; \
146 #define LH_ITERATION_DECREMENT_DEPTH(lh) do { \
147 (lh)->iteration_state -= 2; \
151 #define LH_ITERATION_IS_MUTATED(lh) (((lh)->iteration_state & 1) != 0
    [all...]
lh_stats.c 73 void lh_stats(LHASH *lh, FILE *out)
75 fprintf(out,"num_items = %lu\n",lh->num_items);
76 fprintf(out,"num_nodes = %u\n",lh->num_nodes);
77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes);
78 fprintf(out,"num_expands = %lu\n",lh->num_expands);
79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs);
80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts);
81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs);
82 fprintf(out,"num_hash_calls = %lu\n",lh->num_hash_calls);
83 fprintf(out,"num_comp_calls = %lu\n",lh->num_comp_calls)
    [all...]
lhash.h 174 #define lh_error(lh) ((lh)->error)
177 void lh_free(_LHASH *lh);
178 void *lh_insert(_LHASH *lh, void *data);
179 void *lh_delete(_LHASH *lh, const void *data);
180 void *lh_retrieve(_LHASH *lh, const void *data);
181 void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func);
182 void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg);
184 unsigned long lh_num_items(const _LHASH *lh);
187 void lh_stats(const _LHASH *lh, FILE *out)
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
ActiveEdge_Test.cpp 49 static bool operator_less_than(const UnitTest::ActiveEdge& lh,
51 if ((rh.fAbove.fY - lh.fAbove.fY > lh.fBelow.fY - rh.fAbove.fY
52 && lh.fBelow.fY < rh.fBelow.fY)
53 || (lh.fAbove.fY - rh.fAbove.fY < rh.fBelow.fY - lh.fAbove.fY
54 && rh.fBelow.fY < lh.fBelow.fY)) {
55 const SkPoint& check = rh.fBelow.fY <= lh.fBelow.fY
56 && lh.fBelow != rh.fBelow ? rh.fBelow :
58 return (check.fY - lh.fAbove.fY) * (lh.fBelow.fX - lh.fAbove.fX
    [all...]
  /external/skia/experimental/Intersection/
ActiveEdge_Test.cpp 49 static bool operator_less_than(const UnitTest::ActiveEdge& lh,
51 if ((rh.fAbove.fY - lh.fAbove.fY > lh.fBelow.fY - rh.fAbove.fY
52 && lh.fBelow.fY < rh.fBelow.fY)
53 || (lh.fAbove.fY - rh.fAbove.fY < rh.fBelow.fY - lh.fAbove.fY
54 && rh.fBelow.fY < lh.fBelow.fY)) {
55 const SkPoint& check = rh.fBelow.fY <= lh.fBelow.fY
56 && lh.fBelow != rh.fBelow ? rh.fBelow :
58 return (check.fY - lh.fAbove.fY) * (lh.fBelow.fX - lh.fAbove.fX
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
lhash.h 174 #define lh_error(lh) ((lh)->error)
177 void lh_free(_LHASH *lh);
178 void *lh_insert(_LHASH *lh, void *data);
179 void *lh_delete(_LHASH *lh, const void *data);
180 void *lh_retrieve(_LHASH *lh, const void *data);
181 void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func);
182 void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg);
184 unsigned long lh_num_items(const _LHASH *lh);
187 void lh_stats(const _LHASH *lh, FILE *out)
    [all...]
safestack.h     [all...]
  /external/openssl/include/openssl/
lhash.h 173 #define lh_error(lh) ((lh)->error)
176 void lh_free(_LHASH *lh);
177 void *lh_insert(_LHASH *lh, void *data);
178 void *lh_delete(_LHASH *lh, const void *data);
179 void *lh_retrieve(_LHASH *lh, const void *data);
180 void lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func);
181 void lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg);
183 unsigned long lh_num_items(const _LHASH *lh);
186 void lh_stats(const _LHASH *lh, FILE *out)
    [all...]
safestack.h     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterKMeans.java 69 int lh = h; local
70 while (lw > 256 && lh > 256) {
72 lh /= 2;
75 large_bm_ds = Bitmap.createScaledBitmap(bitmap, lw, lh, true);
80 int sh = lh;
91 nativeApplyFilter(bitmap, w, h, large_bm_ds, lw, lh, small_bm_ds, sw, sh, p, mSeed);
  /external/chromium_org/third_party/icu/source/i18n/
ucol_bld.cpp 256 inline int32_t ucol_inv_getPrevious(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) {
258 uint32_t CE = lh->baseCE;
259 uint32_t SecondCE = lh->baseContCE;
281 lh->previousCE = previousCE;
282 lh->previousContCE = previousContCE;
288 inline int32_t ucol_inv_getNext(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) {
289 uint32_t CE = lh->baseCE;
290 uint32_t SecondCE = lh->baseContCE;
315 lh->nextCE = nextCE;
316 lh->nextContCE = nextContCE
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/stack/
safestack.h     [all...]
  /external/openssl/crypto/stack/
safestack.h     [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMTreeWalker.java 232 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
233 data.dispatchAsComment(lh);
303 LexicalHandler lh = isLexH local
308 lh.startCDATA();
316 lh.endCDATA();
394 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); local
396 lh.endEntity(m_dtm.getNodeName(node));
  /external/chromium_org/third_party/skia/src/pathops/
SkOpAngle.cpp 60 // return true if lh < this < rh
62 const SkOpAngle& lh = *test; local
63 const SkOpAngle& rh = *lh.fNext;
64 SkASSERT(&lh != &rh);
70 lh.fSegment->debugID(), lh.debugID(), lh.fSectorStart, lh.fSectorEnd,
71 lh.fSegment->t(lh.fStart), lh.fSegment->t(lh.fEnd)
    [all...]
  /external/skia/src/pathops/
SkOpAngle.cpp 60 // return true if lh < this < rh
62 const SkOpAngle& lh = *test; local
63 const SkOpAngle& rh = *lh.fNext;
64 SkASSERT(&lh != &rh);
70 lh.fSegment->debugID(), lh.debugID(), lh.fSectorStart, lh.fSectorEnd,
71 lh.fSegment->t(lh.fStart), lh.fSegment->t(lh.fEnd)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XStringForChars.java 151 * @param lh A non-null reference to a LexicalHandler.
155 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh)
158 lh.comment((char[])m_obj, m_start, m_length);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/rpcsvc/
bootparam_prot.x 62 char lh;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/rpcsvc/
bootparam_prot.x 62 char lh;
  /external/llvm/test/MC/Mips/
micromips-loadstore-instructions.s 14 # CHECK-EL: lh $2, 8($4) # encoding: [0x44,0x3c,0x08,0x00]
28 # CHECK-EB: lh $2, 8($4) # encoding: [0x3c,0x44,0x00,0x08]
39 lh $2, 8($4)
  /external/chromium_org/third_party/openssl/openssl/crypto/ec/
ec2_smpl.c 554 BIGNUM *lh, *y2; local
576 lh = BN_CTX_get(ctx);
577 if (lh == NULL) goto err;
584 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err;
585 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
586 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err;
587 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err
    [all...]
  /external/openssl/crypto/ec/
ec2_smpl.c 554 BIGNUM *lh, *y2; local
576 lh = BN_CTX_get(ctx);
577 if (lh == NULL) goto err;
584 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err;
585 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
586 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err;
587 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err
    [all...]

Completed in 1409 milliseconds

1 2 3 4