Home
last modified time | relevance | path

Searched refs:lh (Results 1 – 25 of 155) sorted by relevance

1234567

/external/boringssl/src/include/openssl/
Dlhash_macros.h27 #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 …]
Dlhash.h153 OPENSSL_EXPORT void lh_free(_LHASH *lh);
156 OPENSSL_EXPORT size_t lh_num_items(const _LHASH *lh);
160 OPENSSL_EXPORT void *lh_retrieve(const _LHASH *lh, const void *data);
167 OPENSSL_EXPORT int lh_insert(_LHASH *lh, void **old_data, void *data);
171 OPENSSL_EXPORT void *lh_delete(_LHASH *lh, const void *data);
175 OPENSSL_EXPORT void lh_doall(_LHASH *lh, void (*func)(void *));
180 OPENSSL_EXPORT void lh_doall_arg(_LHASH *lh, void (*func)(void *, void *),
/external/boringssl/src/crypto/lhash/
Dlhash.c102 void lh_free(_LHASH *lh) { in lh_free() argument
106 if (lh == NULL) { in lh_free()
110 for (i = 0; i < lh->num_buckets; i++) { in lh_free()
111 for (n = lh->buckets[i]; n != NULL; n = next) { in lh_free()
117 OPENSSL_free(lh->buckets); in lh_free()
118 OPENSSL_free(lh); in lh_free()
121 size_t lh_num_items(const _LHASH *lh) { return lh->num_items; } in lh_num_items() argument
130 static LHASH_ITEM **get_next_ptr_and_hash(const _LHASH *lh, uint32_t *out_hash, in get_next_ptr_and_hash() argument
132 const uint32_t hash = lh->hash(data); in get_next_ptr_and_hash()
139 ret = &lh->buckets[hash % lh->num_buckets]; in get_next_ptr_and_hash()
[all …]
Dlhash_test.c35 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 …]
Dmake_macros.sh36 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/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/rdtypes/ANY/
DHIP.py76 lh = len(self.hit)
78 file.write(struct.pack("!BBH", lh, self.algorithm, lk))
85 (lh, algorithm, lk) = struct.unpack('!BBH',
89 hit = wire[current : current + lh]
90 current += lh
91 rdlen -= lh
117 lh = len(self.hit)
119 b1.write(struct.pack("!BBH", lh, self.algorithm, lk))
123 lh = len(other.hit)
125 b2.write(struct.pack("!BBH", lh, other.algorithm, lk))
/external/libjpeg-turbo/simd/
Djsimd_mips_dspr2.S922 lh t0, 0(s0) // t0 = A3|A2
923 lh t2, 0(s1) // t2 = B3|B2
1378 lh v0, 0(s2)
1379 lh v1, 0(t9)
1380 lh t0, 0(s0)
1381 lh t1, 0(s1)
1416 lh v0, 0(s2)
1417 lh v1, 0(t9)
1418 lh t0, 0(s0)
1419 lh t1, 0(s1)
[all …]
/external/skia/src/pathops/
DSkOpAngle.cpp62 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/
DDTMTreeWalker.java232 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/
DPathOpsAngleTest.cpp193 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/serializer/
DTreeWalker.java293 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/
DTreeWalker.java319 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/icu/icu4c/source/data/translit/
DLatin_InterIndic.txt99 $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/llvm/test/CodeGen/Hexagon/intrinsics/
Dxtype_mpy.ll173 declare i64 @llvm.hexagon.M2.mpyd.lh.s0(i32, i32)
175 %z = call i64 @llvm.hexagon.M2.mpyd.lh.s0(i32 %a, i32 %b)
180 declare i64 @llvm.hexagon.M2.mpyd.lh.s1(i32, i32)
182 %z = call i64 @llvm.hexagon.M2.mpyd.lh.s1(i32 %a, i32 %b)
229 declare i64 @llvm.hexagon.M2.mpyd.rnd.lh.s0(i32, i32)
231 %z = call i64 @llvm.hexagon.M2.mpyd.rnd.lh.s0(i32 %a, i32 %b)
236 declare i64 @llvm.hexagon.M2.mpyd.rnd.lh.s1(i32, i32)
238 %z = call i64 @llvm.hexagon.M2.mpyd.rnd.lh.s1(i32 %a, i32 %b)
285 declare i64 @llvm.hexagon.M2.mpyd.acc.lh.s0(i64, i32, i32)
287 %z = call i64 @llvm.hexagon.M2.mpyd.acc.lh.s0(i64 %a, i32 %b, i32 %c)
[all …]
/external/libvpx/libvpx/vpx_dsp/
Dfastssim.c48 int lh; in fs_ctx_init() local
51 lh = (_h + 1) >> 1; in fs_ctx_init()
57 im_size = lw * (size_t) lh; in fs_ctx_init()
65 lh = (lh + 1) >> 1; in fs_ctx_init()
72 lh = (_h + 1) >> 1; in fs_ctx_init()
77 _ctx->level[l].h = lh; in fs_ctx_init()
78 im_size = lw * (size_t) lh; in fs_ctx_init()
89 lh = (lh + 1) >> 1; in fs_ctx_init()
/external/valgrind/none/tests/mips64/
Dload_store.stdout.exp-BE12673 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 …]
Dload_store.stdout.exp-LE12673 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/xmlrpcpp/src/
DXmlRpc.h65 static void setLogHandler(XmlRpcLogHandler* lh) in setLogHandler() argument
66 { _logHandler = lh; } in setLogHandler()
/external/llvm/test/MC/Mips/
Dmips-memory-instructions.s29 # CHECK: lh $4, 4($5) # encoding: [0x04,0x00,0xa4,0x84]
39 lh $4, 4($5)
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorTest.java100 Transliterator lh = Transliterator.getInstance("Latin-Hangul"); in TestHangul() local
101 Transliterator hl = lh.getInverse(); in TestHangul()
103 assertTransform("Transform", "\uCE20", lh, "ch"); in TestHangul()
105 assertTransform("Transform", "\uC544\uB530", lh, hl, "atta", "a-tta"); in TestHangul()
106 assertTransform("Transform", "\uC544\uBE60", lh, hl, "appa", "a-ppa"); in TestHangul()
107 assertTransform("Transform", "\uC544\uC9DC", lh, hl, "ajja", "a-jja"); in TestHangul()
108 assertTransform("Transform", "\uC544\uAE4C", lh, hl, "akka", "a-kka"); in TestHangul()
109 assertTransform("Transform", "\uC544\uC2F8", lh, hl, "assa", "a-ssa"); in TestHangul()
110 assertTransform("Transform", "\uC544\uCC28", lh, hl, "acha", "a-cha"); in TestHangul()
111 assertTransform("Transform", "\uC545\uC0AC", lh, hl, "agsa", "ag-sa"); in TestHangul()
[all …]
/external/jhead/
Djpgfile.c142 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/
Dvb1_helper.c133 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/apache-xml/src/main/java/org/apache/xpath/objects/
DXStringForChars.java155 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/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java96 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/llvm/test/CodeGen/SystemZ/
Dint-conv-05.ll28 ; 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)

1234567