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

12

/external/boringssl/src/crypto/lhash/
H A Dlhash_test.cc44 void operator()(_LHASH *lh) { lh_free(lh); } argument
58 std::unique_ptr<_LHASH, FreeLHASH> lh(
60 ASSERT_TRUE(lh);
62 // lh is expected to store a canonical instance of each string. dummy_lh
68 EXPECT_EQ(dummy_lh.size(), lh_num_items(lh.get()));
83 lh_doall_arg(lh.get(),
104 void *value = lh_retrieve(lh.get(), key.get());
112 ASSERT_TRUE(lh_insert(lh.get(), &previous, key.get()));
120 void *value = lh_delete(lh
[all...]
H A Dlhash.c115 void lh_free(_LHASH *lh) { argument
116 if (lh == NULL) {
120 for (size_t i = 0; i < lh->num_buckets; i++) {
122 for (LHASH_ITEM *n = lh->buckets[i]; n != NULL; n = next) {
128 OPENSSL_free(lh->buckets);
129 OPENSSL_free(lh);
132 size_t lh_num_items(const _LHASH *lh) { return lh->num_items; } argument
137 // element of |lh->buckets|, otherwise it returns a pointer to the |next|
141 static LHASH_ITEM **get_next_ptr_and_hash(const _LHASH *lh, uint32_ argument
161 lh_retrieve(const _LHASH *lh, const void *data) argument
176 lh_rebucket(_LHASH *lh, const size_t new_num_buckets) argument
207 lh_maybe_resize(_LHASH *lh) argument
236 lh_insert(_LHASH *lh, void **old_data, void *data) argument
268 lh_delete(_LHASH *lh, const void *data) argument
289 lh_doall_internal(_LHASH *lh, void (*no_arg_func)(void *), void (*arg_func)(void *, void *), void *arg) argument
322 lh_doall(_LHASH *lh, void (*func)(void *)) argument
326 lh_doall_arg(_LHASH *lh, void (*func)(void *, void *), void *arg) argument
[all...]
/external/xmlrpcpp/src/
H A DXmlRpc.h65 static void setLogHandler(XmlRpcLogHandler* lh) argument
66 { _logHandler = lh; }
/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);
H A DXString.java214 * @param lh A non-null reference to a LexicalHandler.
218 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) argument
224 lh.comment(str.toCharArray(), 0, str.length());
H A DXStringForFSB.java192 * @param lh A non-null reference to a LexicalHandler.
196 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) argument
199 fsb().sendSAXComment(lh, m_start, m_length);
/external/libxcam/modules/ocl/
H A Dcl_newwavelet_denoise_handler.h67 SmartPtr<CLImage> lh[3]; member in struct:XCam::_CLCLWaveletDecompBuffer
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DXMLString.java53 * @param lh A non-null reference to a LexicalHandler.
57 public abstract void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) argument
H A DXMLStringDefault.java63 * @param lh A non-null reference to a LexicalHandler.
67 public void dispatchAsComment(org.xml.sax.ext.LexicalHandler lh) argument
/external/syslinux/gpxe/src/net/tcp/
H A Dhttp.c362 struct http_line_handler *lh; local
394 lh = &http_line_handlers[http->rx_state];
395 if ( ( rc = lh->rx ( http, line ) ) != 0 )
/external/libvpx/libvpx/vpx_dsp/
H A Dfastssim.c54 int lh; local
57 lh = (_h + 1) >> 1;
63 im_size = lw * (size_t)lh;
71 lh = (lh + 1) >> 1;
78 lh = (_h + 1) >> 1;
83 _ctx->level[l].h = lh;
84 im_size = lw * (size_t)lh;
95 lh = (lh
[all...]
/external/opencv/cxcore/src/
H A Dcxsvd.cpp398 int lh = nu - i; local
410 icvMatrAXPY3_64f( lh, l-1, hv+1, lduT, uT+1, h );
420 for( j = 1; j < lh; j++ )
442 int lh = nv - i; local
453 icvMatrAXPY3_64f( lh, l-1, hv+1, ldvT, vT+1, h );
463 for( j = 1; j < lh; j++ )
795 int lh = nu - i; local
807 icvMatrAXPY3_32f( lh, l-1, hv+1, lduT, uT+1, h );
817 for( j = 1; j < lh; j++ )
839 int lh local
[all...]
/external/vboot_reference/futility/
H A Dvb1_helper.c133 struct linux_kernel_params *lh; local
141 lh = (struct linux_kernel_params *)kernel_buf;
142 kernel32_start = (lh->setup_sects + 1) << 9;
158 struct linux_kernel_params *lh, *params; local
164 lh = (struct linux_kernel_params *)kernel_buf;
165 kernel32_start = (lh->setup_sects + 1) << 9;
178 Memcpy(&(params->setup_sects), &(lh->setup_sects),
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
H A DRoundTripTest.java192 Transliterator lh = Transliterator.getInstance("Latin-Hangul");
193 Transliterator hl = lh.getInverse();
196 assertRoundTripTransform("Transform", it.getString(), lh, hl);
200 private void assertRoundTripTransform(String message, String source, Transliterator lh, Transliterator hl) { argument
202 String back = lh.transform(to);
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
H A DRoundTripTest.java189 Transliterator lh = Transliterator.getInstance("Latin-Hangul");
190 Transliterator hl = lh.getInverse();
193 assertRoundTripTransform("Transform", it.getString(), lh, hl);
197 private void assertRoundTripTransform(String message, String source, Transliterator lh, Transliterator hl) { argument
199 String back = lh.transform(to);
/external/libvpx/libvpx/vpx_dsp/ppc/
H A Dintrapred_vsx.c371 const int16x8_t lh = unpack_to_s16_h(l); local
377 tm_predictor_16x8(dst, stride, lh, ah, al, tl);
/external/skia/tests/
H A DPathOpsAngleIdeas.cpp21 static int ConvexHullOverlaps(SkOpAngle& lh, SkOpAngle& rh) { argument
22 return lh.convexHullOverlaps(&rh);
25 static int EndsIntersect(SkOpAngle& lh, SkOpAngle& rh) { argument
26 return lh.endsIntersect(&rh);
/external/skqp/tests/
H A DPathOpsAngleIdeas.cpp21 static int ConvexHullOverlaps(SkOpAngle& lh, SkOpAngle& rh) { argument
22 return lh.convexHullOverlaps(&rh);
25 static int EndsIntersect(SkOpAngle& lh, SkOpAngle& rh) { argument
26 return lh.endsIntersect(&rh);
/external/skia/src/pathops/
H A DSkOpAngle.cpp60 // return true if lh < this < rh
62 SkOpAngle* lh = test; local
63 SkOpAngle* rh = lh->fNext;
64 SkASSERT(lh != rh);
66 lh->fPart.fCurve = lh->fOriginalCurvePart;
67 lh->fPart.fCurve.offset(lh->segment()->verb(), fPart.fCurve[0] - lh->fPart.fCurve[0]);
76 lh
[all...]
/external/skqp/src/pathops/
H A DSkOpAngle.cpp60 // return true if lh < this < rh
62 SkOpAngle* lh = test; local
63 SkOpAngle* rh = lh->fNext;
64 SkASSERT(lh != rh);
66 lh->fPart.fCurve = lh->fOriginalCurvePart;
67 lh->fPart.fCurve.offset(lh->segment()->verb(), fPart.fCurve[0] - lh->fPart.fCurve[0]);
76 lh
[all...]
/external/syslinux/com32/lua/src/
H A Dlparser.c1108 static void check_conflict (LexState *ls, struct LHS_assign *lh, expdesc *v) { argument
1112 for (; lh; lh = lh->prev) { /* check all previous assignments */
1113 if (lh->v.k == VINDEXED) { /* assigning to a table? */
1115 if (lh->v.u.ind.vt == v->k && lh->v.u.ind.t == v->u.info) {
1117 lh->v.u.ind.vt = VLOCAL;
1118 lh->v.u.ind.t = extra; /* previous assignment will use safe copy */
1121 if (v->k == VLOCAL && lh
1136 assignment(LexState *ls, struct LHS_assign *lh, int nvars) argument
[all...]
/external/v8/src/mips/
H A Dassembler-mips.cc1857 void Assembler::lh(Register rd, const MemOperand& rs) { function in class:v8::Assembler
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_rdopt.c200 int lh = b_height_log2_lookup[unit_size] + 2; local
204 uint8_t *src = p->src.buf + (idy * p->src.stride << lh) + (idx << lw);
205 uint8_t *dst = pd->dst.buf + (idy * pd->dst.stride << lh) + (idx << lh);
/external/v8/src/mips64/
H A Dassembler-mips64.cc2020 void Assembler::lh(Register rd, const MemOperand& rs) { function in class:v8::internal::Assembler
/external/caliper/lib/
H A Djersey-client-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...

Completed in 745 milliseconds

12