HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1076 - 1100 of 4560) sorted by null

<<41424344454647484950>>

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
BlockOutputStream.java 19 private final OutputStream out; field in class:BlockOutputStream
30 public BlockOutputStream(OutputStream out, FilterEncoder[] filters,
32 this.out = out;
36 outCounted = new CountingOutputStream(out);
78 out.write(buf);
79 EncoderUtil.writeCRC32(out, buf);
111 out.write(0x00);
114 out.write(check.finish());
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/rangecoder/
RangeEncoder.java 82 public void write(OutputStream out) throws IOException {
83 out.write(buf, 0, bufPos);
  /external/mesa3d/src/gallium/auxiliary/util/
u_simple_shaders.c 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
105 * MOV OUT[0], IMM[0] // (if writemask != 0xf)
106 * TEX OUT[0].writemask, IN[0], SAMP[0], 2D;
122 struct ureg_dst out; local
137 out = ureg_DECL_output( ureg,
144 ureg_MOV( ureg, out, imm );
148 ureg_writemask(out, writemask),
184 struct ureg_dst out, depth; local
197 out = ureg_DECL_output( ureg,
207 ureg_MOV( ureg, out, imm )
230 struct ureg_dst out, depth, stencil; local
284 struct ureg_dst out, stencil; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_pass0.c 23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
108 printf("%s: out of params\n", __FUNCTION__);
157 printf("%s: out of constrefs\n", __FUNCTION__);
245 struct brw_wm_instruction *out,
254 out->dst[i] = get_value(c);
255 pass0_set_fpreg_value(c, dst->File, dst->Index, i, out->dst[i]);
259 out->writemask = writemask;
316 struct brw_wm_instruction *out = get_instruction(c); local
321 /* Copy some data out of the instruction
323 out->opcode = inst->Opcode
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_dma.c 28 OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
58 void radeonEmitVec4(uint32_t *out, const GLvoid * data, int stride, int count)
63 fprintf(stderr, "%s count %d stride %d out %p data %p\n",
64 __FUNCTION__, count, stride, (void *)out, (void *)data);
67 COPY_DWORDS(out, data, count);
70 out[0] = *(int *)data;
71 out++;
76 void radeonEmitVec8(uint32_t *out, const GLvoid * data, int stride, int count)
81 fprintf(stderr, "%s count %d stride %d out %p data %p\n",
82 __FUNCTION__, count, stride, (void *)out, (void *)data)
141 uint32_t *out; local
173 float *out; local
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_format.c 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1708 int *out = colorOut->i; local
1750 float *out = colorOut->f; local
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
RetrCommandHandler.java 100 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
105 out.write('\r');
106 out.write('\n');
108 out.write(bytes[i]);
112 return out.toByteArray();
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
AnnotationWriter.java 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
256 * @param out where the annotations must be put.
258 void put(final ByteVector out) {
271 out.putInt(size);
272 out.putShort(n);
275 out.putByteArray(aw.bv.data, 0, aw.bv.length);
285 * @param out where the annotations must be put.
290 final ByteVector out)
296 out.putInt(size).putByte(panns.length - off);
308 out.putShort(n);
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
IsoTypeReader.java 82 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
85 out.write(read);
87 return Utf8.convert(out.toByteArray());
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
Huffman.java 89 void encode(byte[] data, OutputStream out) throws IOException {
104 out.write(((int) (current >> n)));
111 out.write((int) current);
  /external/okhttp/okio/okio/src/main/java/okio/
SegmentedByteString.java 156 @Override public void write(OutputStream out) throws IOException {
157 if (out == null) throw new IllegalArgumentException("out == null");
162 out.write(segments[s], segmentPos, nextSegmentOffset - segmentOffset);
  /external/okhttp/okio/okio/src/test/java/okio/
OkioTest.java 90 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
91 Sink sink = Okio.sink(out);
93 assertEquals("abb", out.toString("UTF-8"));
95 assertEquals("a" + repeat('b', 9998) + "c", out.toString("UTF-8"));
TestUtil.java 130 ObjectOutputStream out = new ObjectOutputStream(buffer.outputStream()); local
131 out.writeObject(original);
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfRgbaYca.cpp 34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
74 Rgba &out = ycaOut[i]; local
102 out.r = 0;
103 out.g = in.g;
104 out.b = 0;
108 out.g = in.r * yw.x + in.g * yw.y + in.b * yw.z;
110 float Y = out.g;
113 out.r = (in.r - Y) / Y;
115 out.r = 0;
118 out.b = (in.b - Y) / Y
365 Rgba &out = rgbaOut[i]; local
475 Rgba &out = rgbaOut[i]; local
    [all...]
  /external/opencv3/3rdparty/zlib/
crc32.c 21 DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.
81 out is a one). We start with the highest power (least significant bit) of
141 /* write out CRC tables to crc32.h */
143 FILE *out; local
145 out = fopen("crc32.h", "w");
146 if (out == NULL) return;
147 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
148 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
149 fprintf(out, "local const z_crc_t FAR ");
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n")
    [all...]