/external/openssl/crypto/lhash/ |
D | 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) in lh_free() argument 162 if (lh == NULL) in lh_free() 165 for (i=0; i<lh->num_nodes; i++) in lh_free() 167 n=lh->b[i]; in lh_free() 175 OPENSSL_free(lh->b); in lh_free() 176 OPENSSL_free(lh); in lh_free() 179 void *lh_insert(_LHASH *lh, void *data) in lh_insert() argument [all …]
|
D | lh_stats.c | 73 void lh_stats(LHASH *lh, FILE *out) in lh_stats() argument 75 fprintf(out,"num_items = %lu\n",lh->num_items); in lh_stats() 76 fprintf(out,"num_nodes = %u\n",lh->num_nodes); in lh_stats() 77 fprintf(out,"num_alloc_nodes = %u\n",lh->num_alloc_nodes); in lh_stats() 78 fprintf(out,"num_expands = %lu\n",lh->num_expands); in lh_stats() 79 fprintf(out,"num_expand_reallocs = %lu\n",lh->num_expand_reallocs); in lh_stats() 80 fprintf(out,"num_contracts = %lu\n",lh->num_contracts); in lh_stats() 81 fprintf(out,"num_contract_reallocs = %lu\n",lh->num_contract_reallocs); in lh_stats() 82 fprintf(out,"num_hash_calls = %lu\n",lh->num_hash_calls); in lh_stats() 83 fprintf(out,"num_comp_calls = %lu\n",lh->num_comp_calls); in lh_stats() [all …]
|
D | lhash.h | 173 #define lh_error(lh) ((lh)->error) argument 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); 187 void lh_node_stats(const _LHASH *lh, FILE *out); [all …]
|
/external/openssl/include/openssl/ |
D | lhash.h | 173 #define lh_error(lh) ((lh)->error) argument 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); 187 void lh_node_stats(const _LHASH *lh, FILE *out); [all …]
|
D | safestack.h | 2341 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) argument 2342 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) argument 2343 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) argument 2344 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) argument 2345 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ argument 2346 LHM_lh_doall_arg(ADDED_OBJ,lh,fn,arg_type,arg) 2347 #define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) argument 2348 #define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) argument 2349 #define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) argument 2350 #define lh_ADDED_OBJ_node_stats_bio(lh,out) \ argument [all …]
|
/external/icu4c/i18n/ |
D | ucol_bld.cpp | 288 inline int32_t ucol_inv_getNext(UColTokenParser *src, UColTokListHeader *lh, uint32_t strength) { in ucol_inv_getNext() argument 289 uint32_t CE = lh->baseCE; in ucol_inv_getNext() 290 uint32_t SecondCE = lh->baseContCE; in ucol_inv_getNext() 315 lh->nextCE = nextCE; in ucol_inv_getNext() 316 lh->nextContCE = nextContCE; in ucol_inv_getNext() 321 static void ucol_inv_getGapPositions(UColTokenParser *src, UColTokListHeader *lh, UErrorCode *statu… in ucol_inv_getGapPositions() argument 329 UColToken *tok = lh->first; in ucol_inv_getGapPositions() 333 lh->gapsHi[3*i] = 0; in ucol_inv_getGapPositions() 334 lh->gapsHi[3*i+1] = 0; in ucol_inv_getGapPositions() 335 lh->gapsHi[3*i+2] = 0; in ucol_inv_getGapPositions() [all …]
|
D | ucol_tok.cpp | 1473 … src->lh = (UColTokListHeader *)uprv_realloc(src->lh, src->listCapacity*sizeof(UColTokListHeader)); in ucol_tok_initAReset() 1474 if(src->lh == NULL) { in ucol_tok_initAReset() 1513 sourceToken->listHeader = &src->lh[src->resultLen]; in ucol_tok_initAReset() 1515 src->lh[src->resultLen].first = NULL; in ucol_tok_initAReset() 1516 src->lh[src->resultLen].last = NULL; in ucol_tok_initAReset() 1517 src->lh[src->resultLen].first = NULL; in ucol_tok_initAReset() 1518 src->lh[src->resultLen].last = NULL; in ucol_tok_initAReset() 1520 src->lh[src->resultLen].reset = sourceToken; in ucol_tok_initAReset() 1600 src->lh[src->resultLen].baseCE = CE & 0xFFFFFF3F; in getVirginBefore() 1602 src->lh[src->resultLen].baseContCE = SecondCE; in getVirginBefore() [all …]
|
/external/openssl/crypto/stack/ |
D | safestack.h | 2341 #define lh_ADDED_OBJ_insert(lh,inst) LHM_lh_insert(ADDED_OBJ,lh,inst) argument 2342 #define lh_ADDED_OBJ_retrieve(lh,inst) LHM_lh_retrieve(ADDED_OBJ,lh,inst) argument 2343 #define lh_ADDED_OBJ_delete(lh,inst) LHM_lh_delete(ADDED_OBJ,lh,inst) argument 2344 #define lh_ADDED_OBJ_doall(lh,fn) LHM_lh_doall(ADDED_OBJ,lh,fn) argument 2345 #define lh_ADDED_OBJ_doall_arg(lh,fn,arg_type,arg) \ argument 2346 LHM_lh_doall_arg(ADDED_OBJ,lh,fn,arg_type,arg) 2347 #define lh_ADDED_OBJ_error(lh) LHM_lh_error(ADDED_OBJ,lh) argument 2348 #define lh_ADDED_OBJ_num_items(lh) LHM_lh_num_items(ADDED_OBJ,lh) argument 2349 #define lh_ADDED_OBJ_down_load(lh) LHM_lh_down_load(ADDED_OBJ,lh) argument 2350 #define lh_ADDED_OBJ_node_stats_bio(lh,out) \ argument [all …]
|
/external/grub/stage2/ |
D | boot.c | 48 struct linux_kernel_header *lh; in load_image() local 96 lh = (struct linux_kernel_header *) buffer; in load_image() 219 else if (lh->boot_flag == BOOTSEC_SIGNATURE in load_image() 220 && lh->setup_sects <= LINUX_MAX_SETUP_SECTS) in load_image() 223 int setup_sects = lh->setup_sects; in load_image() 225 if (lh->header == LINUX_MAGIC_SIGNATURE && lh->version >= 0x0200) in load_image() 227 big_linux = (lh->loadflags & LINUX_FLAG_BIG_KERNEL); in load_image() 228 lh->type_of_loader = LINUX_BOOT_LOADER_TYPE; in load_image() 237 if (lh->version >= 0x0201) in load_image() 239 lh->heap_end_ptr = LINUX_HEAP_END_OFFSET; in load_image() [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 233 data.dispatchAsComment(lh); in startNode() 303 LexicalHandler lh = isLexH in startNode() local 308 lh.startCDATA(); in startNode() 316 lh.endCDATA(); in startNode() 394 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in endNode() local 396 lh.endEntity(m_dtm.getNodeName(node)); in endNode()
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | TreeWalker.java | 293 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in startNode() local 295 lh.comment(data.toCharArray(), 0, data.length()); in startNode() 384 LexicalHandler lh = isLexH in startNode() local 389 lh.startCDATA(); in startNode() 397 lh.endCDATA(); in startNode() 517 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in endNode() local 519 lh.endEntity(eref.getNodeName()); in endNode()
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
D | TreeWalker.java | 319 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); in startNode() local 321 lh.comment(data.toCharArray(), 0, data.length()); in startNode() 389 LexicalHandler lh = isLexH in startNode() 394 lh.startCDATA(); in startNode() 402 lh.endCDATA(); in startNode() 498 LexicalHandler lh = ((LexicalHandler) this.m_contentHandler); 500 lh.endEntity(eref.getNodeName());
|
D | XMLString.java | 57 public abstract void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) in dispatchAsComment() argument
|
/external/icu4c/data/translit/ |
D | Latin_InterIndic.txt | 75 $lh=\uE044; 134 $x=[$virama$aa$ai$au$ii$i$uu$u$rrh$rh$lh$e$o$se$ce$so$co]; 153 \u0314lh→$lh; 154 \u0314l\u0325→$lh; 174 $consonants{ lh→$lh; 175 $consonants{ l\u0325→$lh; 192 lh→$wl; 283 $virama lh→$lh; 284 $virama l\u0325→$lh;
|
D | InterIndic_Latin.txt | 75 $lh=\uE044; 121 $x=[$aa$ai$au$ii$i$uu$u$rrh$rh$lh$llh$e$o$se$ce$so$co]; 338 $forceIndependentMatra{$lh → \u0314l\u0325; 357 $lh → l\u0325;
|
/external/openssl/crypto/ec/ |
D | ec2_smpl.c | 879 BIGNUM *lh, *y2; in ec_GF2m_simple_is_on_curve() local 901 lh = BN_CTX_get(ctx); in ec_GF2m_simple_is_on_curve() 902 if (lh == NULL) goto err; in ec_GF2m_simple_is_on_curve() 909 if (!BN_GF2m_add(lh, &point->X, &group->a)) goto err; in ec_GF2m_simple_is_on_curve() 910 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err; in ec_GF2m_simple_is_on_curve() 911 if (!BN_GF2m_add(lh, lh, &point->Y)) goto err; in ec_GF2m_simple_is_on_curve() 912 if (!field_mul(group, lh, lh, &point->X, ctx)) goto err; in ec_GF2m_simple_is_on_curve() 913 if (!BN_GF2m_add(lh, lh, &group->b)) goto err; in ec_GF2m_simple_is_on_curve() 915 if (!BN_GF2m_add(lh, lh, y2)) goto err; in ec_GF2m_simple_is_on_curve() 916 ret = BN_is_zero(lh); in ec_GF2m_simple_is_on_curve()
|
/external/jhead/ |
D | jpgfile.c | 142 int ll,lh, got; in ReadJpegSections() local 161 lh = fgetc(infile); in ReadJpegSections() 164 itemlen = (lh << 8) | ll; in ReadJpegSections() 183 Data[0] = (uchar)lh; in ReadJpegSections() 338 int ll,lh, got; in ReadJpegSectionsFromBuffer() local 356 lh = buffer[pos++]; in ReadJpegSectionsFromBuffer() 359 itemlen = (lh << 8) | ll; in ReadJpegSectionsFromBuffer() 376 Data[0] = (uchar)lh; in ReadJpegSectionsFromBuffer()
|
/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() argument 158 lh.comment((char[])m_obj, m_start, m_length); in dispatchAsComment()
|
D | XString.java | 218 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) in dispatchAsComment() argument 224 lh.comment(str.toCharArray(), 0, str.length()); in dispatchAsComment()
|
D | XStringForFSB.java | 196 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) in dispatchAsComment() argument 199 fsb().sendSAXComment(lh, m_start, m_length); in dispatchAsComment()
|
/external/openssl/crypto/txt_db/ |
D | txt_db.c | 199 LHASH_OF(OPENSSL_STRING) *lh; in TXT_DB_get_by_index() 206 lh=db->index[idx]; in TXT_DB_get_by_index() 207 if (lh == NULL) in TXT_DB_get_by_index() 212 ret=lh_OPENSSL_STRING_retrieve(lh,value); in TXT_DB_get_by_index()
|
/external/openssl/crypto/engine/ |
D | eng_table.c | 118 LHASH_OF(ENGINE_PILE) *lh; in IMPLEMENT_LHASH_HASH_FN() 122 if((lh = lh_ENGINE_PILE_new()) == NULL) in IMPLEMENT_LHASH_HASH_FN() 124 *t = (ENGINE_TABLE *)lh; in IMPLEMENT_LHASH_HASH_FN()
|
/external/opencv/cxcore/src/ |
D | cxsvd.cpp | 398 int lh = nu - i; in icvSVD_64f() local 410 icvMatrAXPY3_64f( lh, l-1, hv+1, lduT, uT+1, h ); in icvSVD_64f() 420 for( j = 1; j < lh; j++ ) in icvSVD_64f() 442 int lh = nv - i; in icvSVD_64f() local 453 icvMatrAXPY3_64f( lh, l-1, hv+1, ldvT, vT+1, h ); in icvSVD_64f() 463 for( j = 1; j < lh; j++ ) in icvSVD_64f() 795 int lh = nu - i; in icvSVD_32f() local 807 icvMatrAXPY3_32f( lh, l-1, hv+1, lduT, uT+1, h ); in icvSVD_32f() 817 for( j = 1; j < lh; j++ ) in icvSVD_32f() 839 int lh = nv - i; in icvSVD_32f() local [all …]
|
/external/libvpx/vpx_scale/generic/ |
D | bicubic_scaler.c | 492 int h, w, lw, lh; in bicubic_scale() local 509 lh = l_h[h]; in bicubic_scale() 510 ip = input_image + (in_stride * lh); in bicubic_scale() 518 if (phase_offset_h && (lh < in_height - 2)) in bicubic_scale()
|
/external/e2fsprogs/lib/ss/ |
D | std_rqs.ct | 13 list_help, lh;
|