HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1051 - 1075 of 1601) sorted by null

<<41424344454647484950>>

  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_driver.h 18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
120 struct nv50_ir_varying out[PIPE_MAX_SHADER_OUTPUTS]; member in struct:nv50_ir_prog_info
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_wm_fp.c 23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
165 printf("%s: out of temporaries\n", __FILE__);
249 * and brw_wm_pass*.c wants to optimize them out by shuffling references around
293 /* Emit the out calculations, and hold onto the results. Use
604 /* This will get optimized out in general, but it ensures that we
683 struct prog_instruction *out; local
695 out = emit_op(c, OPCODE_MOV,
701 out->SrcReg[0].Negate = NEGATE_NONE;
702 out->SrcReg[0].Abs = 1;
1090 struct prog_instruction *out; local
    [all...]
  /external/mesa3d/src/mesa/tnl/
t_vertex_generic.c 22 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
53 GLfloat *out = (GLfloat *)v; local
56 out[0] = vp[0] * in[0] + vp[12];
57 out[1] = vp[5] * in[1] + vp[13];
58 out[2] = vp[10] * in[2] + vp[14];
59 out[3] = in[3];
65 GLfloat *out = (GLfloat *)v; local
68 out[0] = vp[0] * in[0] + vp[12];
69 out[1] = vp[5] * in[1] + vp[13];
70 out[2] = vp[10] * in[2] + vp[14]
77 GLfloat *out = (GLfloat *)v; local
89 GLfloat *out = (GLfloat *)v; local
101 GLfloat *out = (GLfloat *)v; local
112 GLfloat *out = (GLfloat *)v; local
123 GLfloat *out = (GLfloat *)v; local
134 GLfloat *out = (GLfloat *)v; local
144 GLfloat *out = (GLfloat *)v; local
158 GLfloat *out = (GLfloat *)(v); local
169 GLfloat *out = (GLfloat *)(v); local
180 GLfloat *out = (GLfloat *)(v); local
191 GLfloat *out = (GLfloat *)(v); local
202 GLfloat *out = (GLfloat *)(v); local
219 GLfloat *out = (GLfloat *)(v); local
229 GLfloat *out = (GLfloat *)(v); local
239 GLfloat *out = (GLfloat *)(v); local
250 GLfloat *out = (GLfloat *)(v); local
259 GLfloat *out = (GLfloat *)(v); local
268 GLfloat *out = (GLfloat *)(v); local
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
AudioSpecificConfig.java 512 int out = 4; local
514 out += gaSpecificConfigSize();
518 return out;
522 ByteBuffer out = ByteBuffer.allocate(serializedSize()); local
523 IsoTypeWriter.writeUInt8(out, 5);
524 IsoTypeWriter.writeUInt8(out, serializedSize() - 2);
525 BitWriterBuffer bwb = new BitWriterBuffer(out);
535 return out;
    [all...]
  /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
WebSocketFrame.java 172 //System.out.println(Integer.toBinaryString(read) + "/" + read + "/" + Integer.toHexString(read));
240 public void write(OutputStream out) throws IOException {
246 out.write(header);
250 out.write(isMasked() ? 0x80 | (byte) _payloadLength : (byte) _payloadLength);
252 out.write(isMasked() ? 0xFE : 126);
253 out.write(_payloadLength >>> 8);
254 out.write(_payloadLength);
256 out.write(isMasked() ? 0xFF : 127);
257 out.write(_payloadLength >>> 56 & 0); //integer only contains 31 bit
258 out.write(_payloadLength >>> 48 & 0)
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpResponseCache.java 359 // Since we don't override "write(int oneByte)", we can write directly to "out"
361 out.write(buffer, offset, length);
490 OutputStream out = editor.newOutputStream(ENTRY_METADATA); local
491 Writer writer = new BufferedWriter(new OutputStreamWriter(out, UTF_8));
  /external/opencv/cv/src/
cvinpaint.cpp 37 // or tort (including negligence or otherwise) arising in any way out of
280 icvTeleaInpaintFMM(const CvMat *f, CvMat *t, CvMat *out, int range, CvPriorityQueueFloat *Heap ) {
284 if (CV_MAT_CN(out->type)==3) {
352 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)))*2.0f;
354 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp+1,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm,color)));
358 gradI.x=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,km,lp,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km,lm-1,color)));
365 gradI.y=(float)((CV_MAT_3COLOR_ELEM(*out,uchar,kp+1,lm,color)-CV_MAT_3COLOR_ELEM(*out,uchar,km-1,lm,color)))*2.0f
731 CvMat *mask = 0, *band = 0, *f = 0, *t = 0, *out = 0; local
    [all...]
  /external/openssl/apps/
cms.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
73 static void receipt_request_print(BIO *out, CMS_ContentInfo *cms);
120 BIO *in = NULL, *out = NULL, *indata = NULL, *rctin = NULL; local
505 else if (!strcmp (*args, "-out"))
636 BIO_printf (bio_err, "-out file output file\n");
871 if (!(out = BIO_new_file(outfile, outmode)))
880 out = BIO_new_fp(stdout, BIO_NOCLOSE);
884 out = BIO_push(tmpbio, out);
1079 if (!CMS_decrypt(cms, NULL, NULL, indata, out, flags)
    [all...]
ocsp.c 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
102 static int print_ocsp_summary(BIO *out, OCSP_BASICRESP *bs, OCSP_REQUEST *req,
146 BIO *out = NULL; local
181 if (!strcmp(*args, "-out"))
586 BIO_printf (bio_err, "-out file output filename\n");
634 if(outfile) out = BIO_new_file(outfile, "w");
635 else out = BIO_new_fp(stdout, BIO_NOCLOSE);
637 if(!out)
745 if (req_text && req) OCSP_REQUEST_print(out, req, 0);
831 BIO_printf(out, "Responder Error: %s (%d)\n"
    [all...]