HomeSort by relevance Sort by last modified time
    Searched defs:rh (Results 1 - 18 of 18) sorted by null

  /frameworks/base/core/java/android/os/
RegistrantList.java 114 Handler rh; local
116 rh = r.getHandler();
121 if (rh == null || rh == h) {
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
ReentrantReadWriteLock.java 394 HoldCounter rh = cachedHoldCounter; local
395 if (rh == null || rh.tid != current.getId())
396 rh = readHolds.get();
397 int count = rh.count;
403 --rh.count;
452 HoldCounter rh = cachedHoldCounter; local
453 if (rh == null || rh.tid != current.getId())
454 cachedHoldCounter = rh = readHolds.get()
475 HoldCounter rh = null; local
566 HoldCounter rh = cachedHoldCounter; local
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 1305 BIGNUM *rh, *tmp, *Z4, *Z6; local
1323 rh = BN_CTX_get(ctx);
1335 * To test this, we add up the right-hand side in 'rh'.
1338 /* rh := X^2 */
1339 if (!field_sqr(group, rh, &point->X, ctx)) goto err;
1347 /* rh := (rh + a*Z^4)*X */
1352 if (!BN_mod_sub_quick(rh, rh, tmp, p)) goto err;
1353 if (!field_mul(group, rh, rh, &point->X, ctx)) goto err
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/x11/
SDL_x11modes.c 1063 int rw, rh; local
    [all...]
  /external/speex/libspeex/
sb_celp.c 556 spx_word32_t rl, rh; /*Q13*/ local
581 rh = LPC_SCALING;
584 rh += st->interp_qlpc[i+1] - st->interp_qlpc[i];
590 filter_ratio=EXTRACT16(SATURATE(PDIV32(SHL32(ADD32(rl,82),7),ADD32(82,rh)),32767));
592 filter_ratio=(rl+.01)/(rh+.01);
987 spx_word32_t rl=0,rh=0; local
1011 rh = LPC_SCALING;
1014 rh += ak[i+1] - ak[i];
1020 filter_ratio=EXTRACT16(SATURATE(PDIV32(SHL32(ADD32(rl,82),7),ADD32(82,rh)),32767));
1022 filter_ratio=(rl+.01)/(rh+.01)
    [all...]
  /frameworks/base/awt/java/awt/geom/
Line2D.java 159 float rx, ry, rw, rh; local
169 rh = y2 - y1;
172 rh = y1 - y2;
174 return new Rectangle2D.Float(rx, ry, rw, rh);
280 double rx, ry, rw, rh; local
290 rh = y2 - y1;
293 rh = y1 - y2;
295 return new Rectangle2D.Double(rx, ry, rw, rh);
919 public boolean contains(double rx, double ry, double rw, double rh) {
923 public boolean intersects(double rx, double ry, double rw, double rh) {
    [all...]
RectangularShape.java 200 double rx, ry, rw, rh; local
210 rh = y2 - y1;
213 rh = y1 - y2;
215 setFrame(rx, ry, rw, rh);
  /system/core/include/pixelflinger/
format.h 111 uint8_t rh; // red high bit position + 1 member in struct:__anon13009::__anon13011::__anon13012
  /external/tcpdump/
print-udp.c 212 struct rtcphdr *rh = (struct rtcphdr *)hdr; local
217 if ((u_char *)(rh + 1) > ep) {
221 len = (EXTRACT_16BITS(&rh->rh_len) + 1) * 4;
222 flags = EXTRACT_16BITS(&rh->rh_flags);
226 sr = (struct rtcp_sr *)(rh + 1);
228 if (len != cnt * sizeof(*rr) + sizeof(*sr) + sizeof(*rh))
231 printf(" %u", EXTRACT_32BITS(&rh->rh_ssrc));
245 if (len != cnt * sizeof(*rr) + sizeof(*rh))
247 rr = (struct rtcp_rr *)(rh + 1);
249 printf(" %u", EXTRACT_32BITS(&rh->rh_ssrc))
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp 916 int rh; local
    [all...]
RenderTableSection.cpp 529 int rh = m_rowPos[1] - m_rowPos[0]; local
532 int toAdd = min(dh, (totalHeight * m_grid[r].height.rawValue() / (100 * percentScaleFactor)) - rh);
541 rh = m_rowPos[r + 2] - m_rowPos[r + 1];
    [all...]
RenderBox.cpp 590 int rh; local
593 rh = view()->frameView()->contentsHeight();
596 rh = view()->height();
605 int bh = max(h + marginTop() + marginBottom() + borderTop() + borderBottom(), rh);
793 int rh; local
797 rh = frameView->contentsHeight();
800 rh = layerRenderer->height();
805 max(layerRenderer->height() + layerRenderer->marginTop() + layerRenderer->marginBottom() + layerRenderer->borderTop() + layerRenderer->borderBottom(), rh));
    [all...]
  /external/bluetooth/bluez/audio/
headset.c 81 int rh; /* Response and Hold state */ member in struct:__anon858
91 .rh = -1,
894 if (ag.rh >= 0)
895 headset_send(hs, "\r\n+BTRH: %d\r\n", ag.rh);
897 return headset_send(hs, "\r\nOK\r\n", ag.rh);
    [all...]
  /external/ppp/pppd/
sys-solaris.c 2643 struct opthdr *rh; local
    [all...]
  /external/qemu/
vl-android.c 827 uint64_t rl, rh; local
831 rh = (uint64_t)u.l.high * (uint64_t)b;
832 rh += (rl >> 32);
833 res.l.high = rh / c;
834 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
    [all...]
vl.c 732 uint64_t rl, rh; local
736 rh = (uint64_t)u.l.high * (uint64_t)b;
737 rh += (rl >> 32);
738 res.l.high = rh / c;
739 res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
    [all...]
  /prebuilt/common/jfreechart/
jcommon-1.0.12.jar 
jfreechart-1.0.9.jar 

Completed in 1797 milliseconds