Searched defs:lh (Results 1 - 16 of 16) sorted by relevance

/external/openssl/crypto/lhash/
H A Dlh_stats.c73 void lh_stats(LHASH *lh, FILE *out) argument
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
99 lh_node_stats(LHASH *lh, FILE *out) argument
112 lh_node_usage_stats(LHASH *lh, FILE *out) argument
142 lh_stats(const _LHASH *lh, FILE *fp) argument
154 lh_node_stats(const _LHASH *lh, FILE *fp) argument
166 lh_node_usage_stats(const _LHASH *lh, FILE *fp) argument
180 lh_stats_bio(const _LHASH *lh, BIO *out) argument
208 lh_node_stats_bio(const _LHASH *lh, BIO *out) argument
221 lh_node_usage_stats_bio(const _LHASH *lh, BIO *out) argument
[all...]
H A Dlhash.c110 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) argument
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, voi argument
217 lh_delete(_LHASH *lh, const void *data) argument
248 lh_retrieve(_LHASH *lh, const void *data) argument
270 doall_util_fn(_LHASH *lh, int use_arg, LHASH_DOALL_FN_TYPE func, LHASH_DOALL_ARG_FN_TYPE func_arg, void *arg) argument
300 lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func) argument
305 lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg) argument
310 expand(_LHASH *lh) argument
366 contract(_LHASH *lh) argument
405 getrn(_LHASH *lh, const void *data, unsigned long *rhash) argument
472 lh_num_items(const _LHASH *lh) argument
[all...]
/external/webkit/WebCore/rendering/
H A DRenderBR.cpp55 Length lh = s->lineHeight(); local
56 if (lh.isNegative()) {
64 if (lh.isPercent())
65 return lh.calcMinValue(s->fontSize());
66 return lh.value();
/external/grub/stage2/
H A Dboot.c48 struct linux_kernel_header *lh; local
96 lh = (struct linux_kernel_header *) buffer;
219 else if (lh->boot_flag == BOOTSEC_SIGNATURE
220 && lh->setup_sects <= LINUX_MAX_SETUP_SECTS)
223 int setup_sects = lh->setup_sects;
225 if (lh->header == LINUX_MAGIC_SIGNATURE && lh->version >= 0x0200)
227 big_linux = (lh->loadflags & LINUX_FLAG_BIG_KERNEL);
228 lh->type_of_loader = LINUX_BOOT_LOADER_TYPE;
237 if (lh
804 struct linux_kernel_header *lh local
[all...]
/external/libvpx/vpx_scale/dm642/
H A Dbicubic_scaler_c64.c28 int h, w, lw, lh; local
46 lh = l_h[h];
47 ip = input_image + (in_stride * lh);
57 if (phase_offset_h && (lh < in_height - 2))
/external/chromium/third_party/icu/source/i18n/
H A Ducol_tok.h121 UColTokListHeader *lh; member in struct:__anon1464
H A Ducol_bld.cpp251 inline int32_t ucol_inv_getPrevious(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) {
253 uint32_t CE = lh->baseCE;
254 uint32_t SecondCE = lh->baseContCE;
276 lh->previousCE = previousCE;
277 lh->previousContCE = previousContCE;
283 inline int32_t ucol_inv_getNext(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) { argument
284 uint32_t CE = lh->baseCE;
285 uint32_t SecondCE = lh->baseContCE;
310 lh->nextCE = nextCE;
311 lh
316 ucol_inv_getGapPositions(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
729 ucol_initBuffers(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
835 ucol_createElements(UColTokenParser *src, tempUCATable *t, UColTokListHeader *lh, UErrorCode *status) argument
[all...]
/external/jhead/
H A Djpgfile.c140 int ll,lh, got; local
159 lh = fgetc(infile);
162 itemlen = (lh << 8) | ll;
181 Data[0] = (uchar)lh;
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c492 int h, w, lw, lh; local
509 lh = l_h[h];
510 ip = input_image + (in_stride * lh);
518 if (phase_offset_h && (lh < in_height - 2))
/external/openssl/crypto/ec/
H A Dec2_smpl.c879 BIGNUM *lh, *y2; local
901 lh = BN_CTX_get(ctx);
902 if (lh == NULL) goto err;
909 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err;
910 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err;
911 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err;
912 if (!field_mul(group, lh, lh,
[all...]
/external/webkit/JavaScriptCore/jit/
H A DExecutableAllocatorFixedVMPool.cpp83 void set_less(handle h, handle lh) { h->less = lh; } argument
/external/icu4c/i18n/
H A Ducol_tok.h121 UColTokListHeader *lh; member in struct:__anon2483
H A Ducol_bld.cpp251 inline int32_t ucol_inv_getPrevious(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) {
253 uint32_t CE = lh->baseCE;
254 uint32_t SecondCE = lh->baseContCE;
276 lh->previousCE = previousCE;
277 lh->previousContCE = previousContCE;
283 inline int32_t ucol_inv_getNext(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) { argument
284 uint32_t CE = lh->baseCE;
285 uint32_t SecondCE = lh->baseContCE;
310 lh->nextCE = nextCE;
311 lh
316 ucol_inv_getGapPositions(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
729 ucol_initBuffers(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
835 ucol_createElements(UColTokenParser *src, tempUCATable *t, UColTokListHeader *lh, UErrorCode *status) argument
[all...]
/external/webkit/JavaScriptCore/runtime/
H A DJSArray.cpp770 void set_less(handle h, handle lh) { m_nodes[h].lt &= 0x80000000; m_nodes[h].lt |= lh; } argument
/external/yaffs2/yaffs2/
H A Dyaffs_guts.c3701 struct list_head *lh; local
3709 list_for_each(lh, &dev->objectBucket[i].list) {
3710 if (lh) {
3711 obj = list_entry(lh, yaffs_Object, hashLink);
/external/webkit/WebCore/rendering/style/
H A DRenderStyle.h463 Length lh = lineHeight(); local
466 if (lh.isNegative())
469 if (lh.isPercent())
470 return lh.calcMinValue(fontSize());
472 return lh.value();

Completed in 266 milliseconds