Searched refs:lh (Results 1 - 25 of 76) sorted by relevance

1234

/external/openssl/crypto/lhash/
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...]
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.h173 #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, FIL
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/lhash/
H A Dlhash.c131 #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)
266 lh_free(_LHASH *lh) argument
288 lh_insert(_LHASH *lh, void *data) argument
329 lh_delete(_LHASH *lh, const void *data) argument
362 lh_retrieve(_LHASH *lh, const void *data) argument
384 doall_util_fn(_LHASH *lh, int use_arg, LHASH_DOALL_FN_TYPE func, LHASH_DOALL_ARG_FN_TYPE func_arg, void *arg) argument
425 lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func) argument
430 lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg) argument
435 expand(_LHASH *lh) argument
491 contract(_LHASH *lh) argument
530 getrn(_LHASH *lh, const void *data, unsigned long *rhash) argument
597 lh_num_items(const _LHASH *lh) argument
[all...]
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.h174 #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, FIL
[all...]
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Dlhash.h174 #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, FIL
[all...]
H A Dsafestack.h2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst)
2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn)
2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \
2434 LHM_lh_doall_arg(ADDED_OBJ,lh,f
[all...]
/external/openssl/include/openssl/
H A Dlhash.h173 #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, FIL
[all...]
H A Dsafestack.h2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst)
2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn)
2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \
2434 LHM_lh_doall_arg(ADDED_OBJ,lh,f
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Ducol_bld.cpp256 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) { argument
289 uint32_t CE = lh->baseCE;
290 uint32_t SecondCE = lh->baseContCE;
315 lh->nextCE = nextCE;
316 lh
321 ucol_inv_getGapPositions(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
736 ucol_initBuffers(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
842 ucol_createElements(UColTokenParser *src, tempUCATable *t, UColTokListHeader *lh, UErrorCode *status) argument
[all...]
/external/icu4c/i18n/
H A Ducol_bld.cpp257 inline int32_t ucol_inv_getPrevious(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) {
259 uint32_t CE = lh->baseCE;
260 uint32_t SecondCE = lh->baseContCE;
282 lh->previousCE = previousCE;
283 lh->previousContCE = previousContCE;
289 inline int32_t ucol_inv_getNext(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) { argument
290 uint32_t CE = lh->baseCE;
291 uint32_t SecondCE = lh->baseContCE;
316 lh->nextCE = nextCE;
317 lh
322 ucol_inv_getGapPositions(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
739 ucol_initBuffers(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *status) argument
850 ucol_createElements(UColTokenParser *src, tempUCATable *t, UColTokListHeader *lh, UErrorCode *status) argument
[all...]
/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/chromium_org/third_party/openssl/openssl/crypto/stack/
H A Dsafestack.h2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst)
2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn)
2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \
2434 LHM_lh_doall_arg(ADDED_OBJ,lh,f
[all...]
/external/openssl/crypto/stack/
H A Dsafestack.h2429 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst)
2430 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst)
2431 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst)
2432 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn)
2433 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \
2434 LHM_lh_doall_arg(ADDED_OBJ,lh,f
[all...]
/external/llvm/test/MC/Mips/
H A Dmicromips-loadstore-instructions.s9 # CHECK: lh $2, 8($4) # encoding: [0x08,0x00,0x44,0x3c]
17 lh $2, 8($4)
H A Dmips-memory-instructions.s29 # CHECK: lh $4, 4($5) # encoding: [0x04,0x00,0xa4,0x84]
39 lh $4, 4($5)
/external/libppp/src/
H A Dpap.c86 struct fsmheader lh; local
98 lh.code = PAP_REQUEST;
99 lh.id = authp->id;
100 lh.length = htons(plen + sizeof(struct fsmheader));
102 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader)); local
116 struct fsmheader lh; local
121 lh.code = code;
122 lh.id = authp->id;
125 lh.length = htons(plen + sizeof(struct fsmheader));
127 memcpy(MBUF_CTOP(bp), &lh, sizeo local
[all...]
H A Dfsm.c192 struct fsmheader lh; local
211 lh.code = code;
212 lh.id = id;
213 lh.length = htons(plen);
215 memcpy(MBUF_CTOP(bp), &lh, sizeof(struct fsmheader)); local
1047 struct fsmheader lh; local
1055 bp = mbuf_Read(bp, &lh, sizeof lh);
1057 if (ntohs(lh.length) > len) {
1059 "- dropped\n", fp->link->name, len, (int)ntohs(lh
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMTreeWalker.java232 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
233 data.dispatchAsComment(lh);
303 LexicalHandler lh = isLexH
308 lh.startCDATA();
316 lh.endCDATA();
394 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
396 lh.endEntity(m_dtm.getNodeName(node));
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXStringForChars.java151 * @param lh A non-null reference to a LexicalHandler.
155 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) argument
158 lh.comment((char[])m_obj, m_start, m_length);
/external/chromium_org/third_party/openssl/openssl/crypto/ec/
H A Dec2_smpl.c554 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,
[all...]
/external/openssl/crypto/ec/
H A Dec2_smpl.c554 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,
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java293 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
295 lh.comment(data.toCharArray(), 0, data.length());
384 LexicalHandler lh = isLexH
389 lh.startCDATA();
397 lh.endCDATA();
517 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
519 lh.endEntity(eref.getNodeName());
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java319 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
321 lh.comment(data.toCharArray(), 0, data.length());
389 LexicalHandler lh = isLexH
394 lh.startCDATA();
402 lh.endCDATA();
498 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler);
500 lh.endEntity(eref.getNodeName());

Completed in 2613 milliseconds

1234