| /external/mesa3d/src/gallium/drivers/r300/compiler/ |
| r500_fragprog_emit.c | 49 struct r500_fragment_program_code *code = &c->code->code.r500 78 struct r500_fragment_program_code * Code; 194 static void use_temporary(struct r500_fragment_program_code* code, unsigned int index) 196 if (index > code->max_temp_idx) 197 code->max_temp_idx = index; 200 static unsigned int use_source(struct r500_fragment_program_code* code, struct rc_pair_instruction_source src) 211 use_temporary(code, src.Index); 227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) 627 struct r500_fragment_program_code *code = &compiler->code->code.r500; local [all...] |
| radeon_compiler.h | 114 struct rX00_fragment_program_code *code; member in struct:r300_fragment_program_compiler 133 struct r300_vertex_program_code *code; member in struct:r300_vertex_program_compiler
|
| /external/mesa3d/src/gallium/drivers/r300/ |
| r300_fs.c | 255 struct rX00_fragment_program_code *generic_code = &shader->code; 264 struct r500_fragment_program_code *code = &generic_code->code.r500; local 267 ((code->inst_end + 1) * 6) + 269 code->int_constant_count * 2; 273 OUT_CB_REG(R500_US_PIXSIZE, code->max_temp_idx); 274 OUT_CB_REG(R500_US_FC_CTRL, code->us_fc_ctrl); 275 for(i = 0; i < code->int_constant_count; i++){ 277 code->int_constants[i]); 280 R500_US_CODE_RANGE_ADDR(0) | R500_US_CODE_RANGE_SIZE(code->inst_end)) 311 struct r300_fragment_program_code *code = &generic_code->code.r300; local [all...] |
| /external/mockito/cglib-and-asm/src/org/mockito/asm/ |
| MethodWriter.java | 9 * 1. Redistributions of source code must retain the above copyright
157 * If not zero, indicates that the code of this method must be copied from
158 * the ClassReader associated to this writer in <code>cw.cr</code>. More
160 * <code>cw.cr.b</code>.
165 * If not zero, indicates that the code of this method must be copied from
166 * the ClassReader associated to this writer in <code>cw.cr</code>. More
168 * <code>cw.cr.b</code>. 224 private ByteVector code = new ByteVector(); field in class:MethodWriter [all...] |
| /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/ |
| BeanMap.java | 27 * A <code>Map</code>-based view of a JavaBean. The default set of keys is the 30 * be returned as <code>null</code>. Removal of objects is not a 50 * Helper method to create a new <code>BeanMap</code>. For finer 52 * <code>BeanMap.Generator</code> instead of this static method. 54 * @return a new <code>BeanMap</code> instanc 268 int code = 0; local [all...] |
| /external/nanohttpd/websocket/src/main/java/fi/iki/elonen/ |
| WebSocket.java | 100 CloseCode code = CloseCode.NormalClosure; local 103 code = ((CloseFrame) frame).getCloseCode(); 108 doClose(code, reason, false); 114 sendFrame(new CloseFrame(code, reason)); 116 doClose(code, reason, true); 152 protected void doClose(CloseCode code, String reason, boolean initiatedByRemote) { 171 onClose(code, reason, initiatedByRemote); 180 protected abstract void onClose(CloseCode code, String reason, boolean initiatedByRemote); 198 public void close(CloseCode code, String reason) throws IOException { 202 sendFrame(new CloseFrame(code, reason)) [all...] |
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
| Response.java | 75 * may have added its own {@code Content-Encoding} header to enable 90 public int code() { method in class:Response 91 return statusLine.code(); 180 * between {@code cachedRequest} and {@code newRequest}. 196 if (network.code() == HttpURLConnection.HTTP_NOT_MODIFIED) { 306 * even if this response contains no {@code Cache-Control} header. 353 * <p>Note that transport-layer success (receiving a HTTP response code, 355 * success: {@code response} may still indicate an unhappy HTTP response 356 * code like 404 or 500 [all...] |
| /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
| Huffman.java | 27 * <li>{@code com.twitter.hpack.HuffmanEncoder}</li> 28 * <li>{@code com.twitter.hpack.HuffmanDecoder}</li> 29 * <li>{@code com.twitter.hpack.HpackUtil}</li> 42 * @param codes Index designates the symbol this code represents. 43 * @param lengths Index designates the symbol this code represents. 57 int code = codes[b]; local 61 current |= code; 137 private void addCode(int sym, int code, byte len) { 143 int i = ((code >>> len) & 0xFF); 154 int start = (code << shift) & 0xFF [all...] |
| /external/opencv/otherlibs/highgui/ |
| grfmt_bmp.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 258 int code = m_strm.GetWord(); local 259 int len = code & 255; 260 code >>= 8; 267 clr[0] = m_palette[code >> 4]; 268 clr[1] = m_palette[code & 15]; 269 gray_clr[0] = gray_palette[code >> 4]; 270 gray_clr[1] = gray_palette[code & 15]; 284 else if( code > 2 ) // absolute mode 286 if( data + code*nch > line_end ) goto decode_rle4_bad 347 int code = m_strm.GetWord(); local [all...] |
| grfmt_pxm.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 85 int code; local 89 code = strm.GetByte(); 91 if( !isdigit(code)) 95 if( code == '#' ) 99 code = strm.GetByte(); 101 while( code != '\n' && code != '\r' ); 104 code = strm.GetByte(); 106 while( isspace(code)) 150 int code = m_strm.GetByte(); local 275 int code = ReadNumber( m_strm, INT_MAX ); local [all...] |
| utils.cpp | 19 // * Redistribution's of source code must retain the above copyright notice, 622 int code = src_cn*10 + dst_cn; local 632 switch( code )
|
| /external/openssl/crypto/ |
| o_time.c | 15 * 1. Redistributions of source code must retain the above copyright 107 short code; member in struct:__anon7886 156 following code was used to get this number: 329 /* Time checking test code. Check times are identical for a wide range of
|
| /bionic/libc/kernel/uapi/linux/ |
| filter.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 27 __u16 code; member in struct:sock_filter 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 39 #define BPF_CLASS(code) ((code) & 0x07) 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 50 #define BPF_SIZE(code) ((code) & 0x18 [all...] |
| inet_diag.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 66 unsigned char code; member in struct:inet_diag_bc_op [all...] |
| v4l2-mediabus.h | 23 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 28 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 33 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 38 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 43 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 48 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 53 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 58 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 63 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */ 68 /* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS * 110 __u32 code; member in struct:v4l2_mbus_framefmt [all...] |
| /cts/apps/CtsVerifier/assets/scripts/ |
| execute_power_tests.py | 24 import gflags as flags # http://code.google.com/p/python-gflags/ namespace [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/code/ |
| OutputFinisher.java | 17 package com.android.dexgen.dex.code; 19 import com.android.dexgen.rop.code.LocalItem; 20 import com.android.dexgen.rop.code.RegisterSpec; 21 import com.android.dexgen.rop.code.RegisterSpecList; 22 import com.android.dexgen.rop.code.RegisterSpecSet; 23 import com.android.dexgen.rop.code.SourcePosition; 40 * {@code >= 0;} register count for the method, not including any extra 45 /** {@code non-null;} the list of instructions, per se */ 55 * {@code >= 0;} the count of reserved registers (low-numbered 65 * @param regCount {@code >= 0;} register count for the metho [all...] |
| /dalvik/dexgen/src/com/android/dexgen/rop/code/ |
| RegOps.java | 17 package com.android.dexgen.rop.code; 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r} 25 * is the result register, {@code x} is the first argument, 26 * {@code y} is the second argument, and {@code z} is the 32 /** {@code nop()} */ 35 /** {@code T: any type; r,x: T :: r = x;} */ 38 /** {@code T: any type; r,param(x): T :: r = param(x)} */ 42 * {@code T: Throwable; r: T :: r = caught_exception}. 49 /** {@code T: any type; r, literal: T :: r = literal;} * [all...] |
| RegisterSpec.java | 17 package com.android.dexgen.rop.code; 33 /** {@code non-null;} string to prefix register numbers with */ 36 /** {@code non-null;} intern table for instances */ 40 /** {@code non-null;} common comparison instance used while interning */ 43 /** {@code >= 0;} register number */ 46 /** {@code non-null;} type loaded or stored */ 49 /** {@code null-ok;} local variable info associated with this register, if any */ 55 * @param reg {@code >= 0;} the register number 56 * @param type {@code non-null;} the type (or possibly actual value) which 58 * @param local {@code null-ok;} the associated local variable, if an [all...] |
| /dalvik/dx/src/com/android/dx/cf/code/ |
| LocalsArraySet.java | 17 package com.android.dx.cf.code; 20 import com.android.dx.rop.code.RegisterSpec; 52 * all-uninitialized values (represented as {@code null}s). 54 * @param maxLocals {@code >= 0;} the maximum number of locals this instance 66 * @param primary {@code non-null;} primary locals to use 67 * @param secondaries {@code non-null;} secondaries set, indexed by subroutine 81 * @param toCopy {@code non-null;} instance to copy. 251 * Merges this set with another {@code LocalsArraySet} instance. 253 * @param other {@code non-null;} to merge 254 * @return {@code non-null;} this instance if merge was a no-op, o [all...] |
| /dalvik/dx/src/com/android/dx/command/dump/ |
| BlockDumper.java | 19 import com.android.dx.cf.code.BasicBlocker; 20 import com.android.dx.cf.code.ByteBlock; 21 import com.android.dx.cf.code.ByteBlockList; 22 import com.android.dx.cf.code.ByteCatchList; 23 import com.android.dx.cf.code.BytecodeArray; 24 import com.android.dx.cf.code.ConcreteMethod; 25 import com.android.dx.cf.code.Ropper; 31 import com.android.dx.rop.code.AccessFlags; 32 import com.android.dx.rop.code.BasicBlock; 33 import com.android.dx.rop.code.BasicBlockList 210 BytecodeArray code = meth.getCode(); local 286 BytecodeArray code = meth.getCode(); local [all...] |
| /dalvik/dx/src/com/android/dx/dex/cf/ |
| CfTranslator.java | 20 import com.android.dx.cf.code.ConcreteMethod; 21 import com.android.dx.cf.code.Ropper; 28 import com.android.dx.dex.code.DalvCode; 29 import com.android.dx.dex.code.PositionList; 30 import com.android.dx.dex.code.RopTranslator; 39 import com.android.dx.rop.code.AccessFlags; 40 import com.android.dx.rop.code.DexTranslationAdvice; 41 import com.android.dx.rop.code.LocalVariableExtractor; 42 import com.android.dx.rop.code.LocalVariableInfo; 43 import com.android.dx.rop.code.RopMethod 265 DalvCode code; local [all...] |
| /dalvik/dx/src/com/android/dx/dex/code/ |
| InsnFormat.java | 17 package com.android.dx.dex.code; 19 import com.android.dx.rop.code.RegisterSpec; 20 import com.android.dx.rop.code.RegisterSpecList; 34 * streams of code units, as well as human-oriented listing strings 50 * @param insn {@code non-null;} the instruction 53 * @return {@code non-null;} the string form 79 * has no arguments, then the result should be {@code ""}, not 80 * {@code null}. 84 * @param insn {@code non-null;} the instruction 85 * @return {@code non-null;} the string for [all...] |
| /dalvik/dx/src/com/android/dx/merge/ |
| DexMerger.java | 22 import com.android.dex.Code; 137 codeOut = dexOut.appendSection(writerSizes.code, "code"); 660 * Reads a class_def_item beginning at {@code in} and writes the index and 818 private void transformCode(Dex in, Code code, IndexMap indexMap) { 822 codeOut.writeUnsignedShort(code.getRegistersSize()); 823 codeOut.writeUnsignedShort(code.getInsSize()); 824 codeOut.writeUnsignedShort(code.getOutsSize()); 826 Code.Try[] tries = code.getTries() 1012 private int code; field in class:DexMerger.WriterSizes [all...] |
| /dalvik/dx/src/com/android/dx/rop/code/ |
| RegOps.java | 17 package com.android.dx.rop.code; 24 * <p><b>Note:</b> Opcode descriptions use a rough pseudocode. {@code r} 25 * is the result register, {@code x} is the first argument, 26 * {@code y} is the second argument, and {@code z} is the 32 /** {@code nop()} */ 35 /** {@code T: any type; r,x: T :: r = x;} */ 38 /** {@code T: any type; r,param(x): T :: r = param(x)} */ 42 * {@code T: Throwable; r: T :: r = caught_exception}. 49 /** {@code T: any type; r, literal: T :: r = literal;} * [all...] |