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...]
  /external/opencv3/modules/cudalegacy/src/cuda/
NCVPixelOperations.hpp 38 // or tort (including negligence or otherwise) arising in any way out of
107 template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv8u &out) {out = (Ncv8u)CLAMP_0_255(a);}
108 template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv16u &out) {out = (Ncv16u)CLAMP(a, 0, USHRT_MAX);}
109 template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv32u &out) {out = (Ncv32u)CLAMP(a, 0, UINT_MAX);}
110 template<typename Tin> inline __host__ __device__ void _TDemoteClampZ(Tin &a, Ncv32f &out) {out = (Ncv32f)a;}
113 template<typename Tin> inline __host__ __device__ void _TDemoteClampNN(Tin &a, Ncv8u &out) {out = (Ncv8u)CLAMP_0_255(a+0.5f);
157 Tout out; local
165 Tout out; local
175 Tout out; local
194 Tout out; local
202 Tout out; local
212 Tout out; local
231 Tout out; local
240 Tout out; local
251 Tout out; local
271 Tout out; local
279 Tout out; local
289 Tout out; local
    [all...]
  /external/opencv3/modules/imgcodecs/src/
grfmt_webp.cpp 38 // or tort (including negligence or otherwise) arising in any way out of
236 uint8_t *out = NULL; local
258 size = WebPEncodeLosslessBGR(image->ptr(), width, height, (int)image->step, &out);
262 size = WebPEncodeLosslessBGRA(image->ptr(), width, height, (int)image->step, &out);
269 size = WebPEncodeBGR(image->ptr(), width, height, (int)image->step, quality, &out);
273 size = WebPEncodeBGRA(image->ptr(), width, height, (int)image->step, quality, &out);
282 memcpy(&(*m_buf)[0], out, size);
289 fwrite(out, size, sizeof(uint8_t), fd);
295 if (out != NULL)
297 free(out);
    [all...]
  /external/opencv3/modules/shape/src/
tps_trans.cpp 38 // or tort (including negligence or otherwise) arising in any way out of
117 Point2f out; local
134 out.x=affine+nonrigid;
138 out.y=affine+nonrigid;
141 return out;
  /external/opencv3/samples/cpp/
tvl1_optical_flow.cpp 79 col *= .75; // out of range
185 Mat out; local
186 drawOpticalFlow(flow, out);
191 imshow("Flow", out);
  /external/opencv3/samples/gpu/
generalized_hough.cpp 157 Mat out; local
158 cv::cvtColor(image, out, COLOR_GRAY2BGR);
174 line(out, pts[0], pts[1], Scalar(0, 0, 255), 3);
175 line(out, pts[1], pts[2], Scalar(0, 0, 255), 3);
176 line(out, pts[2], pts[3], Scalar(0, 0, 255), 3);
177 line(out, pts[3], pts[0], Scalar(0, 0, 255), 3);
180 imshow("out", out);
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
UrlTextExample.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
71 // Figure out which attribute we should look for.
120 public static void run(Appendable out, String... argv) throws IOException {
152 out.append(htmlOut);
156 run(System.out, argv);
157 System.out.println();
  /external/pdfium/third_party/lpng_v163/
pngwtran.c 304 unsigned int v, out; local
307 out = 0;
312 out |= v << j;
315 out |= (v >> (-j)) & mask;
318 *bp = (png_byte)(out & 0xff);
333 unsigned int v, out; local
336 out = 0;
341 out |= v << j;
344 out |= v >> (-j);
347 *bp = (png_byte)(out & 0xff);
    [all...]
  /external/pdfium/third_party/zlib_v128/
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...]
  /external/proguard/src/proguard/optimize/info/
ParameterUsageMarker.java 141 System.out.print("ParameterUsageMarker: ["+programClass.getName() +"."+programMethod.getName(programClass)+programMethod.getDescriptor(programClass)+"]: ");
144 System.out.print(isParameterUsed(programMethod, index) ? '+' : '-');
146 System.out.println();
  /external/proguard/src/proguard/shrink/
Shrinker.java 110 System.out.println();
130 configuration.printUsage == Configuration.STD_OUT ? System.out :
135 // Print out items that will be removed.
139 if (ps == System.out)
176 System.out.println("Removing unused program classes and class elements...");
177 System.out.println(" Original number of program classes: " + originalProgramClassPoolSize);
178 System.out.println(" Final number of program classes: " + newProgramClassPoolSize);

Completed in 1507 milliseconds

<<41424344454647484950>>