HomeSort by relevance Sort by last modified time
    Searched refs:rw (Results 1 - 25 of 72) sorted by null

1 2 3

  /external/kernel-headers/original/asm-arm/
spinlock.h 90 static inline void __raw_write_lock(raw_rwlock_t *rw)
104 : "r" (&rw->lock), "r" (0x80000000)
110 static inline int __raw_write_trylock(raw_rwlock_t *rw)
119 : "r" (&rw->lock), "r" (0x80000000)
130 static inline void __raw_write_unlock(raw_rwlock_t *rw)
141 : "r" (&rw->lock), "r" (0)
160 static inline void __raw_read_lock(raw_rwlock_t *rw)
174 : "r" (&rw->lock)
180 static inline void __raw_read_unlock(raw_rwlock_t *rw)
198 : "r" (&rw->lock
    [all...]
  /external/libpcap/ChmodBPF/
ChmodBPF 12 # with permissions rw-rw----, so that anybody in the admin
18 # packets, or give it the permissions rw-r-----, so that
23 chmod g+rw /dev/bpf*
  /external/kernel-headers/original/asm-x86/
spinlock_32.h 145 * Changed to use the same technique as rw semaphores. See
169 static inline void __raw_read_lock(raw_rwlock_t *rw)
175 ::"a" (rw) : "memory");
178 static inline void __raw_write_lock(raw_rwlock_t *rw)
184 ::"a" (rw) : "memory");
206 static inline void __raw_read_unlock(raw_rwlock_t *rw)
208 asm volatile(LOCK_PREFIX "incl %0" :"+m" (rw->lock) : : "memory");
211 static inline void __raw_write_unlock(raw_rwlock_t *rw)
214 : "+m" (rw->lock) : : "memory");
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
Projector.java 49 float rw = 1.0f / mV[3]; local
51 win[winOffset] = mX + mViewWidth * (mV[0] * rw + 1.0f) * 0.5f;
52 win[winOffset + 1] = mY + mViewHeight * (mV[1] * rw + 1.0f) * 0.5f;
53 win[winOffset + 2] = (mV[2] * rw + 1.0f) * 0.5f;
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
config.h 73 #define prefetch(p,rw,loc) __builtin_prefetch(p,rw,loc)
75 #define prefetch(p,rw,loc)
  /hardware/broadcom/wlan/bcm4329/src/include/
bcmsdbus.h 78 extern SDIOH_API_RC sdioh_request_byte(sdioh_info_t *si, uint rw, uint fnc, uint addr, uint8 *byte);
81 extern SDIOH_API_RC sdioh_request_word(sdioh_info_t *si, uint cmd_type, uint rw, uint fnc,
86 uint rw, uint fnc_num, uint32 addr, uint regwidth, uint32 buflen, uint8 *buffer,
sdio.h 134 #define SDIO_POWER_EMPC 0x02 /* enable master power control (allow > 200mA) (RW) */
138 #define SDIO_SPEED_EHS 0x02 /* enable high-speed [clocking] mode (RW) */
292 #define SDIO_IO_RW_DIRECT_ARG(rw, raw, func, addr, data) \
293 ((((rw) & 1) << 31) | (((func) & 0x7) << 28) | (((raw) & 1) << 27) | \
297 #define SDIO_IO_RW_EXTENDED_ARG(rw, blk, func, addr, inc_addr, count) \
298 ((((rw) & 1) << 31) | (((func) & 0x7) << 28) | (((blk) & 1) << 27) | \
  /external/blktrace/btreplay/
btrecord.h 44 * @rw: IO direction: 0 = write, 1 = read
49 __u32 rw; member in struct:io_pkt
  /frameworks/base/awt/java/awt/geom/
RectangularShape.java 200 double rx, ry, rw, rh; local
203 rw = x2 - x1;
206 rw = x1 - x2;
215 setFrame(rx, ry, rw, rh);
Line2D.java 159 float rx, ry, rw, rh; local
162 rw = x2 - x1;
165 rw = x1 - x2;
174 return new Rectangle2D.Float(rx, ry, rw, rh);
280 double rx, ry, rw, rh; local
283 rw = x2 - x1;
286 rw = x1 - x2;
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...]
Ellipse2D.java 423 public boolean intersects(double rx, double ry, double rw, double rh) {
424 if (isEmpty() || rw <= 0.0 || rh <= 0.0) {
433 double rx2 = rx + rw;
442 public boolean contains(double rx, double ry, double rw, double rh) {
443 if (isEmpty() || rw <= 0.0 || rh <= 0.0) {
449 double rx2 = rx + rw;
RoundRectangle2D.java 590 public boolean intersects(double rx, double ry, double rw, double rh) {
591 if (isEmpty() || rw <= 0.0 || rh <= 0.0) {
602 double rx2 = rx + rw;
618 public boolean contains(double rx, double ry, double rw, double rh) {
619 if (isEmpty() || rw <= 0.0 || rh <= 0.0) {
625 double rx2 = rx + rw;
Arc2D.java     [all...]
GeneralPath.java 582 public boolean contains(double rx, double ry, double rw, double rh) {
583 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
587 public boolean intersects(double rx, double ry, double rw, double rh) {
588 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
  /frameworks/base/opengl/java/android/opengl/
GLU.java 171 float rw = 1.0f / w; local
175 * (scratch[V2_OFFSET + 0] * rw + 1.0f)
179 * (scratch[V2_OFFSET + 1] * rw + 1.0f) * 0.5f;
180 win[winOffset + 2] = (scratch[V2_OFFSET + 2] * rw + 1.0f) * 0.5f;
  /external/openssl/apps/
openssl.c 158 int rw; local
160 rw = mode & (CRYPTO_READ|CRYPTO_WRITE);
161 if (!((rw == CRYPTO_READ) || (rw == CRYPTO_WRITE)))
183 modes[type] = rw;
193 if (modes[type] != rw)
195 errstr = (rw == CRYPTO_READ) ?
  /external/opencore/engines/2way/test/test_data/
audio_in.amr 29 UT?????i6??!:V*< ?]????~,Z??q??C?mA?Q???3>^<>5?1?ol?~??r???&aR??rw)??k?0D<.~'??~?z???_?$#pG? $? B?0<F(!?A4???GX???r?*??? D??< U???LZ? ++<O??_ ?4???$9?J6?`<H5??Ah?????SQ?
  /external/blktrace/
blkparse.c 1178 int rw)
1180 if (rw) {
1190 int rw)
1192 __account_m(&pci->io_stats, t, rw);
1197 __account_m(ios, t, rw);
1202 struct blk_io_trace *t, int rw)
1204 if (rw) {
1214 struct per_cpu_info *pci, int rw)
1216 __account_pc_queue(&pci->io_stats, t, rw);
1221 __account_pc_queue(ios, t, rw);
    [all...]
  /external/oprofile/libdb/
db_manage.c 166 int odb_open(odb_t * odb, char const * filename, enum odb_rw rw,
175 int flags = (rw == ODB_RDWR) ? (O_CREAT | O_RDWR) : O_RDONLY;
176 int mmflags = (rw == ODB_RDWR) ? (PROT_READ | PROT_WRITE) : PROT_READ;
208 if (rw == ODB_RDONLY) {
odb.h 115 * @param rw \enum ODB_RW if opening for writing, else \enum ODB_RDONLY
124 enum odb_rw rw, size_t sizeof_header);
  /external/blktrace/btt/
seek.c 45 static FILE *seek_open(char *str, char rw)
53 sprintf(oname, "%s_%s_%c.dat", seek_name, str, rw);
254 char rw = IOP_READ(iop) ? 'r' : 'w'; local
260 fprintf(fp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
262 fprintf(sip->cfp, "%15.9lf %13lld %c\n", tstamp, dist, rw);
  /frameworks/base/opengl/libagl/
vertex.cpp 69 const int32_t rw = gglRecip28(v->clip.w); local
71 v->window.w = rw;
72 v->window.x = gglMulAddx(gglMulx(v->clip.x, rw, 16), m[ 0], m[12], 28);
73 v->window.y = gglMulAddx(gglMulx(v->clip.y, rw, 16), m[ 5], m[13], 28);
77 v->window.z = gglMulAddx(gglMulx(v->clip.z, rw, 16), m[10], m[14], 28);
  /external/kernel-headers/original/linux/
blkdev.h 214 __REQ_CMD, /* is a regular fs rw request */
296 typedef void (activity_fn) (void *data, int rw);
513 static inline int blk_queue_full(struct request_queue *q, int rw)
515 if (rw == READ)
520 static inline void blk_set_queue_full(struct request_queue *q, int rw)
522 if (rw == READ)
528 static inline void blk_clear_queue_full(struct request_queue *q, int rw)
530 if (rw == READ)
748 extern long blk_congestion_wait(int rw, long timeout);
  /external/e2fsprogs/e2fsck/
jfs_user.h 109 void ll_rw_block(int rw, int dummy, struct buffer_head *bh[]);
  /external/kernel-headers/original/linux/raid/
md.h 92 struct page *page, int rw);

Completed in 3202 milliseconds

1 2 3