HomeSort by relevance Sort by last modified time
    Searched defs:READ (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/pixman/pixman/
pixman-accessor.h 3 #define READ(img, ptr) \
19 #define READ(img, ptr) (*(ptr))
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/
rbug_internal.h 79 #define READ(size, type, name) \
90 READ(4, uint32_t, name##_len); \
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_internal.h 79 #define READ(size, type, name) \
90 READ(4, uint32_t, name##_len); \
  /external/chromium_org/base/debug/
proc_maps_linux.h 20 READ = 1 << 0,
33 // Bitmask of read/write/execute/private/shared permissions.
  /external/chromium_org/sandbox/win/src/
sandbox_nt_util.h 74 READ,
79 // be protected by SEH. intent specifies if the buffer should be tested for read
  /external/chromium_org/tools/android/forwarder2/
socket.h 48 // Just a wrapper around unix read() function.
49 // Reads up to buffer_size, but may read less then buffer_size.
50 // Returns the number of bytes read.
51 int Read(void* buffer, size_t buffer_size);
53 // Same as Read(), just a wrapper around write().
56 // Calls Read() multiple times until num_bytes is written to the provided
58 // Returns number of bytes read, which can be different from num_bytes in case
90 READ,
  /external/libvorbis/examples/
encoder_example.c 6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
39 #define READ 1024
40 signed char readbuffer[READ*4+44]; /* out of the data segment, not the stack */
182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here */
195 float **buffer=vorbis_analysis_buffer(&vd,READ);
  /external/chromium/net/http/
disk_cache_based_ssl_host_info.h 45 READ,
96 // WaitForDataReadyDone is the terminal state of the read operation.
http_cache_transaction.h 37 // o If the mode of the transaction is only READ, then it may only read from
49 // respond using the entry read from the cache.
54 READ = READ_META | READ_DATA,
56 READ_WRITE = READ | WRITE,
109 virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
  /external/chromium_org/sandbox/win/tools/finder/
finder.h 13 READ = 0, // Number of objects with read access
52 // for read, write or r/w access. It outputs the results to a file or stdout.
  /external/e2fsprogs/lib/ext2fs/
jfs_compat.h 15 #define READ 0
  /external/javassist/src/main/javassist/bytecode/stackmap/
Liveness.java 22 protected static final byte READ = 1;
30 * be alive (localsUsage[?] must be READ) at least in the first block.
52 usage[i] = READ;
76 in[i] = usage[i] == READ;
119 in[i] = usage[i] == READ;
223 localsUsage[reg] = READ;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 45 READ = 1
84 # Read the source and compile it
88 text = fp.read()
166 data = tmpl.read()
189 input = Res.FSOpenResourceFile(rsrcname, RESOURCE_FORK_NAME, READ)
214 input = Res.FSOpenResourceFile(template, RESOURCE_FORK_NAME, READ)
  /external/giflib/
dgif_lib.c 6 if you only require one of read and write capability, only one of these
30 #define READ(_gif,_buf,_len) \
31 (((GifFilePrivateType*)_gif->Private)->Read ? \
32 ((GifFilePrivateType*)_gif->Private)->Read(_gif,_buf,_len) : \
45 Open a new GIF file for read, given by its name.
112 Private->Read = NULL; /* don't use alternate input method (TVT) */
117 if (READ(GifFile, (unsigned char *)Buf, GIF_STAMP_LEN) != GIF_STAMP_LEN) {
188 Private->Read = readFunc; /* TVT */
192 if (READ(GifFile, (unsigned char *)Buf, GIF_STAMP_LEN) != GIF_STAMP_LEN) {
247 if (READ(GifFile, Buf, 3) != 3)
    [all...]
  /external/smack/src/org/apache/harmony/javax/security/auth/
PrivateCredentialPermission.java 32 * only one action which is "read". The target name of this permission has a
44 * following file may define permission to read the private credentials of a
57 private static final String READ = "read"; //$NON-NLS-1$
70 * {@code "read"}.
75 * the action {@code "read"}.
79 if (READ.equalsIgnoreCase(action)) {
222 return READ;
  /frameworks/base/core/java/android/net/http/
Connection.java 51 private static final int READ = 1;
54 private static final String[] states = {"SEND", "READ", "DRAIN", "DONE"};
186 state = READ;
260 if (!mCanPersist) state = READ;
265 case READ: {
  /system/extras/tests/sdcard/
testcase.h 44 enum Type {UNKNOWN_TEST, WRITE, READ, OPEN_CREATE, READ_WRITE, TRAVERSE};
49 // approximation of how much longer the read tasks must run to
152 // 0: read from child closed
154 // 2: closed read from parent
160 StopWatch *mReadTimer; // Used to time the read calls.
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_optimize.c 50 * are read from the given src in this instruction, We also provide
113 * components are actually read
246 * that are written to but never read. Remove any instructions that
266 /* Determine which temps are read and written */
311 * by setting the 'read' flag.
368 READ,
379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator
416 return READ;
549 * components read still come from the mov instructions
    [all...]
  /external/mesa3d/src/mesa/program/
prog_optimize.c 50 * are read from the given src in this instruction, We also provide
113 * components are actually read
246 * that are written to but never read. Remove any instructions that
266 /* Determine which temps are read and written */
311 * by setting the 'read' flag.
368 READ,
379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator
416 return READ;
549 * components read still come from the mov instructions
    [all...]
  /development/ndk/platforms/android-3/include/linux/
fs.h 59 #define READ 0
64 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
DiskLruCache.java 87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
90 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
109 private static final String READ = "READ";
128 * READ 335c4c6028171cfddfbaae1a9c313c52
129 * READ 3400330d1dfc7f3f7f4b8d4d803dfcf6
143 * and may be read. A publish line is followed by the lengths of each of
145 * o READ lines track accesses for LRU.
199 while ((count = reader.read(buffer)) != -1)
    [all...]
  /external/chromium_org/net/http/
http_cache_transaction.h 39 // o If the mode of the transaction is only READ, then it may only read from
51 // respond using the entry read from the cache.
56 READ = READ_META | READ_DATA,
58 READ_WRITE = READ | WRITE,
120 virtual int Read(IOBuffer* buf,
345 // Returns an error to signal the caller that the current read failed. The
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/model/
ResultsElement.java 71 static final int READ = 0x04;
370 * <li>{@link #READ} : has valid results</li>
450 this.status = READ;
461 this.status = READ;
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 75 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
78 * <p>Clients call {@link #get} to read a snapshot of an entry. The read will
99 private static final String READ = "READ";
115 * READ 335c4c6028171cfddfbaae1a9c313c52
116 * READ 3400330d1dfc7f3f7f4b8d4d803dfcf6
130 * and may be read. A publish line is followed by the lengths of each of
132 * o READ lines track accesses for LRU.
307 } else if (secondSpace == -1 && firstSpace == READ.length() && line.startsWith(READ))
    [all...]
  /external/openfst/src/include/fst/
fst.h 57 // file from being mapped, READ mode will be selected in these cases with
59 enum FileReadMode { READ, MAP };
63 // this info (don't read a stream header)
65 // this info (read and skip stream isymbols)
67 // this info (read and skip stream osymbols)
68 FileReadMode mode; // Read or map files (advisory, if possible)
131 bool Read(istream &strm, const string &source, bool rewind = false);
205 // Read an Fst from an input stream; returns NULL on error
206 static Fst<A> *Read(istream &strm, const FstReadOptions &opts) {
212 if (!hdr.Read(strm, opts.source)
    [all...]

Completed in 1811 milliseconds

1 2 3 4