HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1726 - 1750 of 5424) sorted by null

<<61626364656667686970>>

  /external/mesa3d/src/gallium/drivers/svga/
svga_state_framebuffer.c 20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
398 goto out;
455 float out = fy + fh - fb_height; /* number of vp pixels out of view */ local
456 prescale.translate[1] += fy * out / in;
468 goto out;
625 out:
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
blend_jit.cpp 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
53 Value* out[4]; local
58 out[0] = out[1] = out[2] = out[3] = VIMMED1(1.0f);
61 out[0] = src[0];
62 out[1] = src[1];
63 out[2] = src[2];
64 out[3] = src[3]
243 Value* out[4]; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nv10_state_frag.c 22 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
76 uint32_t out; member in struct:combiner_state
91 (rc)->in = (rc)->out = 0; \
225 rc->out = RC_OUT_AB;
232 rc->out = RC_OUT_AB;
249 rc->out = RC_OUT_SUM |
259 rc->out = RC_OUT_SUM;
268 rc->out = RC_OUT_SUM;
276 rc->out = RC_OUT_DOT_AB;
284 rc->out = RC_OUT_DOT_AB
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_format.c 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2430 int *out = colorOut->i; local
2472 float *out = colorOut->f; local
    [all...]
st_pbo.c 21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
414 struct ureg_dst out; local
435 out = ureg_DECL_output(ureg, TGSI_SEMANTIC_COLOR, 0);
442 out = ureg_dst(image);
528 /* store(out, temp0, temp1) */
531 ureg_memory_insn(ureg, TGSI_OPCODE_STORE, &out, 1, op, 2, 0,
536 /* out = txf(sampler, temp0.x) */
541 ureg_MOV(ureg, out, ureg_src(temp0));
  /external/mesa3d/src/mesa/tnl/
t_vb_texgen.c 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
255 GLvector4f *out = &store->texcoord[unit]; local
257 build_f_tab[VB->EyePtr->size]( out->start,
258 out->stride,
262 out->flags |= (in->flags & VEC_SIZE_FLAGS) | VEC_SIZE_3;
263 out->count = VB->Count;
264 out->size = MAX2(in->size, 3);
266 _mesa_copy_tab[0x8]( out, in );
277 GLvector4f *out = &store->texcoord[unit]; local
279 GLfloat (*texcoord)[4] = (GLfloat (*)[4])out->start
305 GLvector4f *out = &store->texcoord[unit]; local
339 GLvector4f *out = &store->texcoord[unit]; local
    [all...]
  /external/mockito/src/test/java/org/mockito/internal/invocation/
InvocationMatcherTest.java 182 List<InvocationMatcher> out = InvocationMatcher.createFrom(asList(i)); local
184 assertEquals(1, out.size());
185 assertEquals(i, out.get(0).getInvocation());
  /external/mockito/src/test/java/org/mockitousage/stubbing/
DeepStubbingTest.java 86 OutputStream out = new ByteArrayOutputStream(); local
88 when(socket.getOutputStream()).thenReturn(out);
90 assertSame(out, socket.getOutputStream());
98 OutputStream out = new ByteArrayOutputStream(); local
101 when(socketFactory.createSocket().getOutputStream()).thenReturn(out);
103 assertSame(out, socketFactory.createSocket().getOutputStream());
148 OutputStream out = new ByteArrayOutputStream(); local
152 when(sf.createSocket(anyString(), anyInt()).getOutputStream()).thenReturn(out);
154 assertSame(out, sf.createSocket("google.com", 80).getOutputStream());
155 assertSame(out, sf.createSocket("stackoverflow.com", 8080).getOutputStream())
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
DecoderConfigDescriptor.java 113 ByteBuffer out = ByteBuffer.allocate(serializedSize()); local
114 IsoTypeWriter.writeUInt8(out, 4);
115 IsoTypeWriter.writeUInt8(out, serializedSize() - 2);
116 IsoTypeWriter.writeUInt8(out, objectTypeIndication);
118 IsoTypeWriter.writeUInt8(out, flags);
119 IsoTypeWriter.writeUInt24(out, bufferSizeDB);
120 IsoTypeWriter.writeUInt32(out, maxBitRate);
121 IsoTypeWriter.writeUInt32(out, avgBitRate);
122 out.put(audioSpecificInfo.serialize().array());
123 return out;
    [all...]
  /external/objenesis/main/src/test/java/org/objenesis/
ClassReader.java 37 System.out.println("Usage: ClassReader (path_to_the_class_file|class:complete_class_name)");
152 System.out.println(this + " " + attribute_name);
163 System.out.println("Attribute LineNumberTable skipped");
168 System.out.println("Attribute LocalVariableTable skipped");
175 System.out.println("\t" + info);
261 System.out.println("Constant pool count: " + constant_pool_count);
268 System.out.print(i + ": ");
286 System.out.println(constant_pool[i]);
291 System.out.println("Access flags: " + access_flags); // see http://stackoverflow.com/questions/8949933/what-is-the-purpose-of-the-acc-super-access-flag-on-java-class-files
295 System.out.println("This class index: " + this_class)
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
325 uchar *out = data; local
340 RGBToGray( (float *)buffer, (float *)out );
360 out[x] = CV_CAST_8U(t);
369 out[x] = CV_CAST_8U(t);
374 out += step;
530 void GrFmtExrReader::RGBToGray( float *in, float *out )
537 out[i] = in[n] * m_chroma.blue[0] + in[n + 1] * m_chroma.green[0] + in[n + 2] * m_chroma.red[0];
541 uchar *o = (uchar *)out;
555 ((int *)out)[i] = int(si[n] * m_chroma.blue[0] + si[n + 1] * m_chroma.green[0] + si[n + 2] * m_chroma.red[0])
    [all...]
  /external/openssh/
ssh-pkcs11-helper.c 14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
275 int in, out, max, log_stderr = 0; local
293 out = STDOUT_FILENO;
298 if (out > max)
299 max = out;
323 FD_SET(out, wset);
346 if (FD_ISSET(out, wset)) {
347 len = write(out, buffer_ptr(&oqueue), olen);
  /external/pdfium/core/fxcodec/codec/
fx_codec.cpp 120 uint8_t* out = *dest_buf; local
137 out[0] = 257 - (run_end - run_start);
138 out[1] = x;
144 out += 2;
149 out[run_end - run_start] = x;
154 out[run_end - run_start] = x;
161 out[0] = run_end - run_start - 2;
162 out += run_end - run_start;
166 out[0] = 0;
167 out[1] = x
195 uint8_t* out = *dest_buf; local
    [all...]
  /external/pdfium/third_party/lcms2-2.6/src/
cmsgmt.c 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
101 cmsToneCurve* out = NULL; local
125 out = cmsBuildTabulatedToneCurveFloat(ContextID, nPoints, SampledPoints);
132 return out;
148 cmsToneCurve *in, *out, *KTone; local
163 out = ComputeKToLstar(ContextID, nPoints, 1,
169 if (out == NULL) {
176 KTone = cmsJoinToneCurve(ContextID, in, out, nPoints);
179 cmsFreeToneCurve(in); cmsFreeToneCurve(out);
202 cmsFloat64Number Thereshold; // The thereshold after which is considered out of gamu
    [all...]
  /external/pdfium/third_party/zlib_v128/
gzguts.h 182 unsigned char *out; /* output buffer (double-sized when reading) */ member in struct:__anon29506
inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
NioByteString.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
120 public void writeTo(OutputStream out) throws IOException {
121 out.write(toByteArray());
130 void writeToInternal(OutputStream out, int sourceOffset, int numberToWrite) throws IOException {
135 out.write(buffer.array(), bufferOffset, numberToWrite);
139 ByteBufferWriter.write(slice(sourceOffset, sourceOffset + numberToWrite), out); local
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectsource_test.cc 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
563 MapOut out; local
564 (*out.mutable_map1())["key1"].set_foo("foovalue");
565 (*out.mutable_map1())["key2"].set_foo("barvalue");
567 MapOut* nested_value = &(*out.mutable_map2())["nestedself"];
571 (*out.mutable_map3())[111] = "one one one";
573 out.set_bar("top bar");
600 DoTest(out, MapOut::descriptor());
606 // leave out the key field or the value field of a map entry.
607 MapOutWireFormat out; local
687 AnyOut out; local
706 AnyOut out; local
735 AnyOut out; local
770 AnyOut out; local
779 AnyOut out; local
792 AnyOut out; local
807 AnyOut out; local
823 AnyOut out; local
858 StructType out; local
874 StructType out; local
898 FieldMaskTest out; local
961 TimestampDuration out; local
972 TimestampDuration out; local
983 TimestampDuration out; local
994 TimestampDuration out; local
    [all...]
protostream_objectwriter_test.cc 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1445 AnyOut out; local
1472 AnyOut out; local
1506 AnyOut out; local
1635 AnyOut out; local
1662 AnyOut out; local
1690 AnyOut out; local
    [all...]
  /external/python/cpython2/Modules/zlib/
gzguts.h 174 unsigned char *out; /* output buffer (double-sized when reading) */ member in struct:__anon30411
inflate.c 48 * - Pull out common wnext == 0 case for speed in inflate_fast()
75 * for the in() and out() functions
308 Write out the inffixed.h that is #include'd above. Defining MAKEFIXED also
323 a.out > inffixed.h
615 unsigned in, out; /* save starting available input and output */ local
636 out = left;
    [all...]
minigzip.c 242 unsigned char out[BUFLEN]; local
250 strm->next_out = out;
253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
301 unsigned char out[BUFLEN]; local
310 strm->next_out = out;
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
339 void gz_compress OF((FILE *in, gzFile out));
341 int gz_compress_mmap OF((FILE *in, gzFile out));
343 void gz_uncompress OF((gzFile in, FILE *out));
362 void gz_compress(in, out)
463 gzFile out; local
501 FILE *out; local
    [all...]
  /external/python/cpython2/Tools/iobench/
iobench.py 13 out = sys.stdout variable
267 out.write(
271 out.flush()
276 out.write(bw.rjust(12) + "\n")
278 out.write(" warning: test above used only %d%% CPU, "
293 out.write("\n")
  /external/r8/src/main/java/com/android/tools/r8/graph/
DexString.java 62 char[] out = new char[size]; local
66 return new String(out, 0, s);
68 out[s] = a;
76 out[s++] = (char) (((a & 0x1F) << 6) | (b & 0x3F));
83 out[s++] = (char) (((a & 0x0F) << 12) | ((b & 0x3F) << 6) | (c & 0x3F));
  /external/r8/src/test/examples/newarray/
NewArray.java 19 for (int i : array) System.out.println(i);
91 System.out.println(i2.length);
92 System.out.println(i3.length);
93 System.out.println(i4.length);
94 System.out.println(i5.length);
95 System.out.println(i6.length);
100 System.out.println(i2.length);
102 System.out.println(i3.length);
104 System.out.println(i4.length);
106 System.out.println(i5.length)
    [all...]

Completed in 1085 milliseconds

<<61626364656667686970>>