Searched defs:mh (Results 1 - 19 of 19) sorted by path

/external/aac/libFDK/src/arm/
H A Dfft_rad2_arm.cpp146 INT mh = 1 << 1; local
155 mh <<= 1;
167 FIXP_DBL *xt2 = xt1 + (mh<<1);
170 FIXP_DBL *xt2 = xt1 + (mh<<1);
187 xt1 += mh;
188 xt2 += mh;
203 xt1 = xt2 + mh;
204 } while ((r=r-(mh<<1)) != 0);
206 for(j=4; j<mh; j+=4)
217 FIXP_DBL *xt2 = xt1 + (mh<<
[all...]
/external/aac/libFDK/src/
H A Dfft_rad2.cpp158 INT mh=(m>>1); local
173 INT t2 = t1 + (mh<<1);
189 t1 += mh;
190 t2 = t1+(mh<<1);
206 for(j=1; j<mh/4; ++j)
215 INT t2 = t1 + (mh<<1);
229 t1 += mh;
230 t2 = t1+(mh<<1);
243 /* Same as above but for t1,t2 with j>mh/4 and thus cs swapped */
244 t1 = (r+mh/
363 const INT mh=(m>>1); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/transport/
H A DTransportManager.java66 MessageHandler mh; field in class:TransportManager.HandlerEntry
523 he.mh.handleMessage(null, 0);
536 public void registerMessageHandler(MessageHandler mh, int low, int high) argument
539 he.mh = mh;
549 public void removeMessageHandler(MessageHandler mh, int low, int high) argument
556 if ((he.mh == mh) && (he.low == low) && (he.high == high))
826 MessageHandler mh = null;
833 mh
[all...]
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java627 * @param mh the method handler for the proxy class.
630 public Object create(Class[] paramTypes, Object[] args, MethodHandler mh) argument
635 ((ProxyObject)obj).setHandler(mh);
/external/libppp/src/
H A Dmp.c417 struct mp_header mh, h; local
427 if (m && mp_ReadHeader(mp, m, &mh) == 0) {
434 p->dl->mp.seq = mh.seq;
470 h = mh;
474 if (m && isbefore(mp->local_is12bit, mh.seq, h.seq)) {
482 h = mh;
599 if (isbefore(mp->local_is12bit, mh.seq, h.seq))
843 struct mp_header mh; local
846 first = mp_ReadHeader(mp, mp->inbufs, &mh) ? mh
[all...]
/external/openssl/crypto/bn/
H A Dbn_asm.c851 BN_ULONG mh; local
866 mh = HBITS(ml);
869 mul(tp[j],ap[j],ml,mh,c0);
884 mh = HBITS(ml);
887 mul_add(tp[j],ap[j],ml,mh,c0);
900 mh = HBITS(ml);
902 mul_add(c1,np[0],ml,mh,c0);
910 mul_add(c1,np[j],ml,mh,c0);
/external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
H A DSDL_dlcompat.c243 static NSSymbol search_linked_libs(const struct mach_header *mh, const char *symbol);
244 static const char *get_lib_name(const struct mach_header *mh);
313 static const char *get_lib_name(const struct mach_header *mh) argument
318 if (mh)
322 if (mh == _dyld_get_image_header(i))
339 const struct mach_header *mh = NULL; local
347 mh = _dyld_get_image_header(i);
351 return mh;
562 const struct mach_header *mh = 0; local
566 mh
590 search_linked_libs(const struct mach_header * mh, const char *symbol) argument
1194 const struct mach_header *mh = 0; local
[all...]
/external/svox/pico/lib/
H A Dpicofftsg.c532 picoos_int32 j, k, m, mh; local
549 mh = m >> 1;
556 for (j = 1; j < mh; j++, aj++, ak--, amj++, amk--) {
570 m = mh;
1707 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
1712 mh = n >> 3;
1713 m = 2 * mh;
1748 if (i0 > mh - 4) {
1749 i0 = mh - 4;
1850 if (i0 == mh
2034 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
2248 picoos_int32 i, i0, j, j0, j1, j2, j3, m, mh; local
[all...]
/external/tcpdump/
H A Dprint-juniper.c288 const struct juniper_monitor_header *mh; local
295 mh = (struct juniper_monitor_header *)p;
299 EXTRACT_32BITS(&mh->service_id),
300 EXTRACT_16BITS(&mh->iif),
301 mh->pkt_type);
H A Dprint-mobility.c173 const struct ip6_mobility *mh; local
177 mh = (struct ip6_mobility *)bp;
182 if (!TTEST(mh->ip6m_len)) {
198 mhlen = (int)((mh->ip6m_len + 1) << 3);
202 TCHECK(mh->ip6m_type);
203 type = mh->ip6m_type;
215 TCHECK2(*mh, hlen + 8);
227 TCHECK(mh->ip6m_data16[0]);
228 printf(" nonce id=0x%x", EXTRACT_16BITS(&mh->ip6m_data16[0]));
231 TCHECK2(*mh, hle
[all...]
H A DsctpHeader.h169 struct sctpHeader mh; member in struct:sctpSendableInit
235 struct sctpHeader mh; member in struct:sctpUnifiedAbortLight
240 struct sctpHeader mh; member in struct:sctpUnifiedAbortHeavy
273 struct sctpHeader mh; member in struct:sctpUnifiedStreamError
281 struct sctpHeader mh; member in struct:staleCookieMsg
292 struct sctpHeader mh; member in struct:sctpUnifiedSingleMsg
/external/valgrind/main/coregrind/
H A Dfixup_macho_loadcmds.c173 const struct mach_header_64* mh = buf; local
183 if (mh->magic == MH_MAGIC_64)
246 struct mach_header_64* mh; local
315 mh = (struct mach_header_64 *)ii->macho_img;
316 if (mh->magic == MH_MAGIC) {
325 if (mh->magic != MH_MAGIC_64)
328 if (ii->macho_img_szB < sizeof(struct mach_header_64) + mh->sizeofcmds)
381 { struct mach_header_64 *mh = (struct mach_header_64 *)ii.macho_img; local
385 for (c = 0, cmd = (struct load_command *)(mh+1);
386 c < mh
[all...]
H A Dlauncher-darwin.c160 struct mach_header *mh = (struct mach_header *)buf; local
161 if (mh->magic == MH_MAGIC || mh->magic == MH_MAGIC_64) {
162 return name_for_cputype(mh->cputype);
163 } else if (mh->magic == MH_CIGAM || mh->magic == MH_CIGAM_64) {
164 return name_for_cputype(OSSwapInt32(mh->cputype));
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadmacho.c122 const struct MACH_HEADER* mh = buf; local
132 if (mh->magic == MAGIC)
198 struct MACH_HEADER* mh; local
284 mh = (struct MACH_HEADER *)ii->macho_img;
285 if (mh->magic != MAGIC) {
290 if (ii->macho_img_szB < sizeof(struct MACH_HEADER) + mh->sizeofcmds) {
600 struct MACH_HEADER *mh = (struct MACH_HEADER *)base; local
604 for (c = 0, cmd = (struct load_command *)(mh+1);
605 c < mh->ncmds;
712 { struct MACH_HEADER *mh local
[all...]
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c3920 static void import_complex_message(ThreadId tid, mach_msg_header_t *mh) argument
3927 vg_assert(mh->msgh_bits & MACH_MSGH_BITS_COMPLEX);
3929 body = (mach_msg_body_t *)(mh+1);
4071 static size_t export_complex_message(ThreadId tid, mach_msg_header_t *mh) argument
4078 vg_assert(mh->msgh_bits & MACH_MSGH_BITS_COMPLEX);
4080 body = (mach_msg_body_t *)(mh+1);
6330 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6331 Bool self_terminate = (mh->msgh_request_port == MACH_THREAD);
6333 PRINT("thread_terminate(%s)", name_for_port(mh->msgh_request_port));
6523 mach_msg_header_t *mh local
6601 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6620 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6634 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6763 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6779 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6802 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
6837 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
7004 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
7059 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
7157 mach_msg_header_t *mh = (mach_msg_header_t *)ARG1; local
[all...]
/external/valgrind/main/coregrind/m_ume/
H A Dmacho.c435 struct MACH_HEADER mh; local
454 if (sizeof(mh) > size) {
457 res = VG_(pread)(fd, &mh, sizeof(mh), offset);
458 if (sr_isError(res) || sr_Res(res) != sizeof(mh)) {
465 if (mh.magic != MAGIC) {
470 if (mh.filetype != filetype) {
478 len = sizeof(mh) + mh.sizeofcmds;
497 lcend = (struct load_command *)(headers + mh
[all...]
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_view_single.c293 Evas_Coord mx, my, mw, mh, ax, ay, aw, ah, bx, by, bw, bh; local
309 mh = sh + sr->dy;
310 by = my + mh;
316 mh = sh - sr->dy;
320 ah = mh;
326 sr->dx, sr->dy, mx, my, mw, mh, ax, ay, aw, ah, bx, by, bw, bh);
331 evas_object_image_data_update_add(sd->backing_store, mx, my, mw, mh);

Completed in 415 milliseconds