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

1 2 3 4 5 6 7 8 9

  /external/smali/smalidea/src/test/java/org/jf/smalidea/findUsages/
FieldUsageTypeTest.java 93 23, UsageType.WRITE,
94 24, UsageType.WRITE,
95 25, UsageType.WRITE,
96 26, UsageType.WRITE,
97 27, UsageType.WRITE,
98 28, UsageType.WRITE,
99 29, UsageType.WRITE,
100 30, UsageType.WRITE,
101 31, UsageType.WRITE,
102 32, UsageType.WRITE,
    [all...]
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_texture.c 30 * The functions starting rbug_send_* encodes a call to the write format and
57 WRITE(4, int32_t, ((int32_t)RBUG_OP_TEXTURE_LIST));
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
94 WRITE(4, int32_t, ((int32_t)RBUG_OP_TEXTURE_INFO));
95 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
96 WRITE(8, rbug_texture_t, texture); /* texture */
151 WRITE(4, int32_t, ((int32_t)RBUG_OP_TEXTURE_WRITE));
152 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
153 WRITE(8, rbug_texture_t, texture); /* texture */
154 WRITE(4, uint32_t, face); /* face *
    [all...]
rbug_context.c 30 * The functions starting rbug_send_* encodes a call to the write format and
57 WRITE(4, int32_t, ((int32_t)RBUG_OP_CONTEXT_LIST));
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
94 WRITE(4, int32_t, ((int32_t)RBUG_OP_CONTEXT_INFO));
95 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
96 WRITE(8, rbug_context_t, context); /* context */
134 WRITE(4, int32_t, ((int32_t)RBUG_OP_CONTEXT_DRAW_BLOCK));
135 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
136 WRITE(8, rbug_context_t, context); /* context */
137 WRITE(4, rbug_block_t, block); /* block *
    [all...]
rbug_core.c 30 * The functions starting rbug_send_* encodes a call to the write format and
57 WRITE(4, int32_t, ((int32_t)RBUG_OP_NOOP));
58 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
92 WRITE(4, int32_t, ((int32_t)RBUG_OP_PING));
93 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
129 WRITE(4, int32_t, ((int32_t)RBUG_OP_ERROR));
130 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
131 WRITE(4, uint32_t, error); /* error */
167 WRITE(4, int32_t, ((int32_t)RBUG_OP_PING_REPLY));
168 WRITE(4, uint32_t, ((uint32_t)(__len / 4)))
    [all...]
rbug_shader.c 30 * The functions starting rbug_send_* encodes a call to the write format and
59 WRITE(4, int32_t, ((int32_t)RBUG_OP_SHADER_LIST));
60 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
61 WRITE(8, rbug_context_t, context); /* context */
99 WRITE(4, int32_t, ((int32_t)RBUG_OP_SHADER_INFO));
100 WRITE(4, uint32_t, ((uint32_t)(__len / 4)));
101 WRITE(8, rbug_context_t, context); /* context */
102 WRITE(8, rbug_shader_t, shader); /* shader */
142 WRITE(4, int32_t, ((int32_t)RBUG_OP_SHADER_DISABLE));
143 WRITE(4, uint32_t, ((uint32_t)(__len / 4)))
    [all...]
rbug_internal.h 64 #define WRITE(size, type, name) \
73 WRITE(4, uint32_t, name##_len); \
  /external/opencv3/modules/core/src/
algorithm.cpp 58 FileStorage fs(filename, FileStorage::WRITE);
61 write(fs);
  /external/libchrome/base/debug/
proc_maps_linux.h 22 WRITE = 1 << 1,
34 // Bitmask of read/write/execute/private/shared permissions.
  /frameworks/av/services/audioflinger/
FastCaptureState.cpp 39 case FastCaptureState::WRITE: return "WRITE";
FastCaptureState.h 35 NBAIO_Sink* mPipeSink; // after reading from input source, write to this pipe sink
44 WRITE = 0x10, // write to pipe sink
45 READ_WRITE = 0x18; // read from input source and write to pipe sink
FastMixerState.h 77 WRITE = 0x10, // write to output sink
78 MIX_WRITE = 0x18; // mix tracks and write to output sink
81 NBAIO_Sink* mTeeSink; // if non-NULL, then duplicate write()s to this non-blocking sink
  /external/opencv3/samples/cpp/
imagelist_creator.cpp 41 FileStorage fs(outputname, FileStorage::WRITE);
  /prebuilts/misc/common/swig/include/2.0.11/ruby/
file.i 34 %typemap(in) FILE *WRITE {
  /toolchain/binutils/binutils-2.25/binutils/
deflex.l 20 along with this program; if not, write to the Free Software
52 "WRITE" { return WRITE;}
  /external/blktrace/
act_mask.c 17 DECLARE_MASK_MAP(WRITE),
  /external/e2fsprogs/lib/ext2fs/
jfs_compat.h 16 #define WRITE 1
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_ioctl_test.cc 83 EXPECT_EQ(ioctl_desc::WRITE, desc.type);
91 EXPECT_EQ(ioctl_desc::WRITE, desc.type);
  /external/libbrillo/brillo/streams/
stream_utils.h 67 // Checks if |mode| allows write access.
69 return mode == Stream::AccessMode::WRITE ||
73 // Make the access mode based on read/write rights requested.
74 inline Stream::AccessMode MakeAccessMode(bool read, bool write) {
75 CHECK(read || write); // Either read or write (or both) must be specified.
76 if (read && write)
78 return write ? Stream::AccessMode::WRITE : Stream::AccessMode::READ;
fake_stream_unittest.cc 81 CreateStream(Stream::AccessMode::WRITE);
300 CreateStream(Stream::AccessMode::WRITE);
305 CreateStream(Stream::AccessMode::WRITE);
315 CreateStream(Stream::AccessMode::WRITE);
331 CreateStream(Stream::AccessMode::WRITE);
350 CreateStream(Stream::AccessMode::WRITE);
367 CreateStream(Stream::AccessMode::WRITE);
389 CreateStream(Stream::AccessMode::WRITE);
396 EXPECT_EQ(Stream::AccessMode::WRITE, mode);
399 EXPECT_TRUE(stream_->WaitForData(Stream::AccessMode::WRITE,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
fs.h 117 * The below are the various read and write types that we support. Some of
145 * WRITE A normal async write. Device will be plugged.
146 * WRITE_SYNC Synchronous write. Identical to WRITE, but passes down
148 * shortly. The write equivalent of READ_SYNC.
149 * WRITE_ODIRECT Special case write for O_DIRECT only.
162 #define WRITE RW_MASK
166 #define WRITE_SYNC (WRITE | REQ_SYNC | REQ_NOIDLE)
167 #define WRITE_ODIRECT (WRITE | REQ_SYNC
    [all...]
  /external/cblas/testing/
c_dblat2.f 148 WRITE( NOUT, FMT = 9997 )'N', NIDMAX
154 WRITE( NOUT, FMT = 9996 )NMAX
161 WRITE( NOUT, FMT = 9997 )'K', NKBMAX
167 WRITE( NOUT, FMT = 9995 )
174 WRITE( NOUT, FMT = 9997 )'INCX AND INCY', NINMAX
180 WRITE( NOUT, FMT = 9994 )INCMAX
187 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
194 WRITE( NOUT, FMT = 9997 )'BETA', NBEMAX
201 WRITE( NOUT, FMT = 9993 )
202 WRITE( NOUT, FMT = 9992 )( IDIM( I ), I = 1, NIDIM
    [all...]
c_sblat2.f 148 WRITE( NOUT, FMT = 9997 )'N', NIDMAX
154 WRITE( NOUT, FMT = 9996 )NMAX
161 WRITE( NOUT, FMT = 9997 )'K', NKBMAX
167 WRITE( NOUT, FMT = 9995 )
174 WRITE( NOUT, FMT = 9997 )'INCX AND INCY', NINMAX
180 WRITE( NOUT, FMT = 9994 )INCMAX
187 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
194 WRITE( NOUT, FMT = 9997 )'BETA', NBEMAX
201 WRITE( NOUT, FMT = 9993 )
202 WRITE( NOUT, FMT = 9992 )( IDIM( I ), I = 1, NIDIM
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
fs.h 94 * The below are the various read and write types that we support. Some of
122 * WRITE A normal async write. Device will be plugged.
123 * SWRITE Like WRITE, but a special case for ll_rw_block() that
126 * WRITE_SYNC_PLUG Synchronous write. Identical to WRITE, but passes down
133 * immediately after submission. The write equivalent
135 * WRITE_ODIRECT Special case write for O_DIRECT only.
139 * WRITE_BARRIER Like WRITE, but tells the block layer that all
142 * this write is complete, it itself is also safely o
    [all...]
  /external/eigen/blas/testing/
cblat2.f 155 WRITE( NOUT, FMT = 9997 )'N', NIDMAX
161 WRITE( NOUT, FMT = 9996 )NMAX
168 WRITE( NOUT, FMT = 9997 )'K', NKBMAX
174 WRITE( NOUT, FMT = 9995 )
181 WRITE( NOUT, FMT = 9997 )'INCX AND INCY', NINMAX
187 WRITE( NOUT, FMT = 9994 )INCMAX
194 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
201 WRITE( NOUT, FMT = 9997 )'BETA', NBEMAX
208 WRITE( NOUT, FMT = 9993 )
209 WRITE( NOUT, FMT = 9992 )( IDIM( I ), I = 1, NIDIM
    [all...]
dblat2.f 150 WRITE( NOUT, FMT = 9997 )'N', NIDMAX
156 WRITE( NOUT, FMT = 9996 )NMAX
163 WRITE( NOUT, FMT = 9997 )'K', NKBMAX
169 WRITE( NOUT, FMT = 9995 )
176 WRITE( NOUT, FMT = 9997 )'INCX AND INCY', NINMAX
182 WRITE( NOUT, FMT = 9994 )INCMAX
189 WRITE( NOUT, FMT = 9997 )'ALPHA', NALMAX
196 WRITE( NOUT, FMT = 9997 )'BETA', NBEMAX
203 WRITE( NOUT, FMT = 9993 )
204 WRITE( NOUT, FMT = 9992 )( IDIM( I ), I = 1, NIDIM
    [all...]

Completed in 1552 milliseconds

1 2 3 4 5 6 7 8 9