/external/boringssl/src/include/openssl/ |
D | lhash_macros.h | 27 #define lh_ASN1_OBJECT_free(lh) \ argument 28 lh_free(CHECKED_CAST(_LHASH *, LHASH_OF(ASN1_OBJECT) *, lh)); 30 #define lh_ASN1_OBJECT_num_items(lh) \ argument 31 lh_num_items(CHECKED_CAST(_LHASH *, LHASH_OF(ASN1_OBJECT) *, lh)) 33 #define lh_ASN1_OBJECT_retrieve(lh, data) \ argument 35 CHECKED_CAST(_LHASH *, LHASH_OF(ASN1_OBJECT) *, lh), \ 38 #define lh_ASN1_OBJECT_insert(lh, old_data, data) \ argument 39 lh_insert(CHECKED_CAST(_LHASH *, LHASH_OF(ASN1_OBJECT) *, lh), \ 43 #define lh_ASN1_OBJECT_delete(lh, data) \ argument 45 CHECKED_CAST(_LHASH *, LHASH_OF(ASN1_OBJECT) *, lh), \ [all …]
|
D | lhash.h | 152 OPENSSL_EXPORT void lh_free(_LHASH *lh); 155 OPENSSL_EXPORT size_t lh_num_items(const _LHASH *lh); 159 OPENSSL_EXPORT void *lh_retrieve(const _LHASH *lh, const void *data); 166 OPENSSL_EXPORT int lh_insert(_LHASH *lh, void **old_data, void *data); 170 OPENSSL_EXPORT void *lh_delete(_LHASH *lh, const void *data); 174 OPENSSL_EXPORT void lh_doall(_LHASH *lh, void (*func)(void *)); 179 OPENSSL_EXPORT void lh_doall_arg(_LHASH *lh, void (*func)(void *, void *),
|
/external/boringssl/src/crypto/lhash/ |
D | lhash.c | 101 void lh_free(_LHASH *lh) { in lh_free() argument 105 if (lh == NULL) { in lh_free() 109 for (i = 0; i < lh->num_buckets; i++) { in lh_free() 110 for (n = lh->buckets[i]; n != NULL; n = next) { in lh_free() 116 OPENSSL_free(lh->buckets); in lh_free() 117 OPENSSL_free(lh); in lh_free() 120 size_t lh_num_items(const _LHASH *lh) { return lh->num_items; } in lh_num_items() argument 129 static LHASH_ITEM **get_next_ptr_and_hash(const _LHASH *lh, uint32_t *out_hash, in get_next_ptr_and_hash() argument 131 const uint32_t hash = lh->hash(data); in get_next_ptr_and_hash() 138 ret = &lh->buckets[hash % lh->num_buckets]; in get_next_ptr_and_hash() [all …]
|
D | lhash_test.c | 35 static void dummy_lh_free(struct dummy_lhash *lh) { in dummy_lh_free() argument 38 for (cur = lh->head; cur != NULL; cur = next) { in dummy_lh_free() 45 static size_t dummy_lh_num_items(const struct dummy_lhash *lh) { in dummy_lh_num_items() argument 49 for (cur = lh->head; cur != NULL; cur = cur->next) { in dummy_lh_num_items() 56 static char *dummy_lh_retrieve(struct dummy_lhash *lh, const char *s) { in dummy_lh_retrieve() argument 59 for (cur = lh->head; cur != NULL; cur = cur->next) { in dummy_lh_retrieve() 68 static int dummy_lh_insert(struct dummy_lhash *lh, char **old_data, char *s) { in dummy_lh_insert() argument 71 for (cur = lh->head; cur != NULL; cur = cur->next) { in dummy_lh_insert() 82 node->next = lh->head; in dummy_lh_insert() 83 lh->head = node; in dummy_lh_insert() [all …]
|
D | make_macros.sh | 36 lh_free(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh)); 39 lh_num_items(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh)) 42 …((${type}*) lh_retrieve(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh), CHECKED_CAST(void*, ${type}… 45 …lh_insert(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh), CHECKED_CAST(void**, ${type}**, old_data)… 48 …((${type}*) lh_delete(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh), CHECKED_CAST(void*, ${type}*,… 51 …lh_doall(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh), CHECKED_CAST(void (*)(void*), void (*) (${… 54 …lh_doall_arg(CHECKED_CAST(_LHASH*, LHASH_OF(${type})*, lh), CHECKED_CAST(void (*)(void*, void*), v…
|
/external/skia/src/pathops/ |
D | SkOpAngle.cpp | 62 SkOpAngle* lh = test; in after() local 63 SkOpAngle* rh = lh->fNext; in after() 64 SkASSERT(lh != rh); in after() 70 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd, in after() 71 lh->fStart->t(), lh->fEnd->t(), in after() 75 SkString bugPart[3] = { lh->debugPart(), this->debugPart(), rh->debugPart() }; in after() 77 if (lh->fComputeSector && !lh->computeSector()) { in after() 90 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd, in after() 91 lh->fStart->t(), lh->fEnd->t(), in after() 96 bool ltrOverlap = (lh->fSectorMask | rh->fSectorMask) & fSectorMask; in after() [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/skia/tests/ |
D | PathOpsAngleTest.cpp | 193 static int After(SkOpAngle& lh, SkOpAngle& rh) { in After() argument 194 return lh.after(&rh); in After() 197 static int ConvexHullOverlaps(SkOpAngle& lh, SkOpAngle& rh) { in ConvexHullOverlaps() argument 198 return lh.convexHullOverlaps(&rh); in ConvexHullOverlaps() 201 static int Orderable(SkOpAngle& lh, SkOpAngle& rh) { in Orderable() argument 202 return lh.orderable(&rh); in Orderable() 205 static int EndsIntersect(SkOpAngle& lh, SkOpAngle& rh) { in EndsIntersect() argument 206 return lh.endsIntersect(&rh); in EndsIntersect() 209 static void SetNext(SkOpAngle& lh, SkOpAngle& rh) { in SetNext() argument 210 lh.fNext = &rh; in SetNext()
|
/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());
|
/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/icu/icu4c/source/data/translit/ |
D | Latin_InterIndic.txt | 99 $lh=\uE062; 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;
|
/external/valgrind/none/tests/mips64/ |
D | load_store.stdout.exp-BE | 12673 lh :: offset: 0x0, out: 0x0 12674 lh :: offset: 0x2, out: 0x0 12675 lh :: offset: 0x4, out: 0x0 12676 lh :: offset: 0x6, out: 0x0 12677 lh :: offset: 0x8, out: 0x982 12678 lh :: offset: 0xa, out: 0x3b6e 12679 lh :: offset: 0xc, out: 0xd43 12680 lh :: offset: 0xe, out: 0x26d9 12681 lh :: offset: 0x10, out: 0x1304 12682 lh :: offset: 0x12, out: 0x76dc [all …]
|
D | load_store.stdout.exp-LE | 12673 lh :: offset: 0x0, out: 0x0 12674 lh :: offset: 0x2, out: 0x0 12675 lh :: offset: 0x4, out: 0x0 12676 lh :: offset: 0x6, out: 0x0 12677 lh :: offset: 0x8, out: 0x3b6e 12678 lh :: offset: 0xa, out: 0x982 12679 lh :: offset: 0xc, out: 0x26d9 12680 lh :: offset: 0xe, out: 0xd43 12681 lh :: offset: 0x10, out: 0x76dc 12682 lh :: offset: 0x12, out: 0x1304 [all …]
|
/external/llvm/test/CodeGen/Hexagon/intrinsics/ |
D | xtype_mpy.ll | 169 declare i64 @llvm.hexagon.M2.mpyd.lh.s0(i32, i32) 171 %z = call i64 @llvm.hexagon.M2.mpyd.lh.s0(i32 %a, i32 %b) 176 declare i64 @llvm.hexagon.M2.mpyd.lh.s1(i32, i32) 178 %z = call i64 @llvm.hexagon.M2.mpyd.lh.s1(i32 %a, i32 %b) 225 declare i64 @llvm.hexagon.M2.mpyd.rnd.lh.s0(i32, i32) 227 %z = call i64 @llvm.hexagon.M2.mpyd.rnd.lh.s0(i32 %a, i32 %b) 232 declare i64 @llvm.hexagon.M2.mpyd.rnd.lh.s1(i32, i32) 234 %z = call i64 @llvm.hexagon.M2.mpyd.rnd.lh.s1(i32 %a, i32 %b) 281 declare i64 @llvm.hexagon.M2.mpyd.acc.lh.s0(i64, i32, i32) 283 %z = call i64 @llvm.hexagon.M2.mpyd.acc.lh.s0(i64 %a, i32 %b, i32 %c) [all …]
|
/external/llvm/test/MC/Mips/ |
D | mips-memory-instructions.s | 29 # CHECK: lh $4, 4($5) # encoding: [0x04,0x00,0xa4,0x84] 39 lh $4, 4($5)
|
D | micromips-loadstore-instructions.s | 14 # CHECK-EL: lh $2, 8($4) # encoding: [0x44,0x3c,0x08,0x00] 52 # CHECK-EB: lh $2, 8($4) # encoding: [0x3c,0x44,0x00,0x08] 87 lh $2, 8($4)
|
/external/jhead/ |
D | jpgfile.c | 142 int ll,lh, got; in ReadJpegSections() local 162 lh = fgetc(infile); in ReadJpegSections() 165 itemlen = (lh << 8) | ll; in ReadJpegSections() 184 Data[0] = (uchar)lh; in ReadJpegSections() 340 int ll,lh, got; in ReadJpegSectionsFromBuffer() local 359 lh = buffer[pos++]; in ReadJpegSectionsFromBuffer() 362 itemlen = (lh << 8) | ll; in ReadJpegSectionsFromBuffer() 379 Data[0] = (uchar)lh; in ReadJpegSectionsFromBuffer()
|
/external/vboot_reference/futility/ |
D | vb1_helper.c | 133 struct linux_kernel_params *lh; in KernelSize() local 141 lh = (struct linux_kernel_params *)kernel_buf; in KernelSize() 142 kernel32_start = (lh->setup_sects + 1) << 9; in KernelSize() 158 struct linux_kernel_params *lh, *params; in PickApartVmlinuz() local 164 lh = (struct linux_kernel_params *)kernel_buf; in PickApartVmlinuz() 165 kernel32_start = (lh->setup_sects + 1) << 9; in PickApartVmlinuz() 178 Memcpy(&(params->setup_sects), &(lh->setup_sects), in PickApartVmlinuz()
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
D | TransliteratorTest.java | 96 Transliterator lh = Transliterator.getInstance("Latin-Hangul"); in TestHangul() local 97 Transliterator hl = lh.getInverse(); in TestHangul() 99 assertTransform("Transform", "\uCE20", lh, "ch"); in TestHangul() 101 assertTransform("Transform", "\uC544\uB530", lh, hl, "atta", "a-tta"); in TestHangul() 102 assertTransform("Transform", "\uC544\uBE60", lh, hl, "appa", "a-ppa"); in TestHangul() 103 assertTransform("Transform", "\uC544\uC9DC", lh, hl, "ajja", "a-jja"); in TestHangul() 104 assertTransform("Transform", "\uC544\uAE4C", lh, hl, "akka", "a-kka"); in TestHangul() 105 assertTransform("Transform", "\uC544\uC2F8", lh, hl, "assa", "a-ssa"); in TestHangul() 106 assertTransform("Transform", "\uC544\uCC28", lh, hl, "acha", "a-cha"); in TestHangul() 107 assertTransform("Transform", "\uC545\uC0AC", lh, hl, "agsa", "ag-sa"); in TestHangul() [all …]
|
/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()
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/ |
D | TerrainPatch.java | 291 for (LocationHeight lh : locationHeights) { in setHeight() 292 if (lh.x < 0 || lh.z < 0 || lh.x >= size || lh.z >= size) in setHeight() 294 int idx = lh.z * size + lh.x; in setHeight() 296 geomap.getHeightArray()[idx] = lh.h; in setHeight() 299 geomap.getHeightArray()[idx] = h+lh.h; in setHeight()
|
D | TerrainQuad.java | 1268 for (LocationHeight lh : locations) { 1269 int quad = findQuadrant(lh.x, lh.z); 1271 int col = lh.x; 1272 int row = lh.z; 1275 quadLH1.add(lh); 1278 row = lh.z - split + 1; 1279 quadLH2.add(new LocationHeight(lh.x, row, lh.h)); 1282 col = lh.x - split + 1; 1283 quadLH3.add(new LocationHeight(col, lh.z, lh.h)); 1286 col = lh.x - split + 1; [all …]
|
/external/llvm/test/CodeGen/SystemZ/ |
D | int-conv-05.ll | 28 ; CHECK: lh %r2, 0(%r2) 38 ; CHECK: lh %r2, 4094(%r2) 73 ; CHECK: lh %r2, 0(%r2) 108 ; CHECK: lh %r2, 0(%r2) 119 ; CHECK: lh %r2, 4094(%r3,%r2) 146 ; CHECK: lh {{%r[0-9]+}}, 16{{[26]}}(%r15)
|
/external/llvm/test/CodeGen/Mips/cconv/ |
D | return-struct.ll | 70 ; N32-LE-DAG: lh $2, 8([[SP:\$sp]]) 75 ; N32-BE-DAG: lh [[R3:\$[0-9]+]], 8([[SP:\$sp]]) 81 ; N64-LE-DAG: lh $2, 8([[SP:\$sp]]) 86 ; N64-BE-DAG: lh [[R3:\$[0-9]+]], 8([[SP:\$sp]]) 116 ; N32-LE-DAG: lh [[R1:\$[0-9]+]], 4([[PTR_LO]]) 130 ; N64-LE-DAG: lh [[R1:\$[0-9]+]], 4([[PTR]])
|
/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 …]
|