HomeSort by relevance Sort by last modified time
    Searched refs:SBITS (Results 1 - 3 of 3) sorted by null

  /external/ltrace/sysdeps/linux-gnu/arm/
regs.h 24 #define SBITS(obj,st,fn) \
trace.c 426 next_pcs[nr++] = pc + (SBITS(inst1, 0, 7) << 1);
431 next_pcs[nr++] = pc + (SBITS(inst1, 0, 10) << 1);
444 const int imm1 = SBITS(inst1, 0, 10);
475 const int sign = SBITS(inst1, 10, 10);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
StampedLock.java 262 private static final long SBITS = ~RBITS; // note overlap with ABITS
480 return (((s = state) & WBIT) == 0L) ? (s & SBITS) : 0L;
497 return (stamp & SBITS) == (state & SBITS);
528 if (((s = state) & SBITS) != (stamp & SBITS) ||
553 while (((s = state) & SBITS) == (stamp & SBITS)) {
593 while (((s = state) & SBITS) == (stamp & SBITS)) {
    [all...]

Completed in 651 milliseconds