/external/libvpx/libvpx/vpx_dsp/arm/ |
idct32x32_add_neon.c | 28 static INLINE void load_from_output(const int16_t *const out, const int first, 31 *q0 = vld1q_s16(out + first * 32); 32 *q1 = vld1q_s16(out + second * 32); 35 static INLINE void store_in_output(int16_t *const out, const int first, 38 vst1q_s16(out + first * 32, q0); 39 vst1q_s16(out + second * 32, q1); 174 int16_t **out) { 177 vst1q_s16(*out, a0); 178 *out += 8; 179 vst1q_s16(*out, a1) 519 int16_t *out; local [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
idct8x8_msa.c | 104 int16_t out; local 108 out = ROUND_POWER_OF_TWO((input[0] * cospi_16_64), DCT_CONST_BITS); 109 out = ROUND_POWER_OF_TWO((out * cospi_16_64), DCT_CONST_BITS); 110 val = ROUND_POWER_OF_TWO(out, 5);
|
/external/libxml2/ |
xmlcatalog.c | 484 FILE *out; local 489 out = fopen(argv[i + 1], "w"); 490 if (out == NULL) { 496 xmlACatalogDump(catal, out); 497 fclose(out); 504 out = fopen(XML_SGML_DEFAULT_CATALOG, "w"); 505 if (out == NULL) { 513 xmlACatalogDump(super, out); 514 fclose(out); 589 FILE *out; local [all...] |
/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/compiler/nir/ |
nir_lower_clip.c | 20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 68 store_clipdist_output(nir_builder *b, nir_variable *out, nir_ssa_def **val) 74 nir_intrinsic_set_base(store, out->data.driver_location); 155 nir_ssa_def *cv, nir_variable **out) 189 store_clipdist_output(&b, out[0], &clipdist[0]); 191 store_clipdist_output(&b, out[1], &clipdist[4]); 206 nir_variable *out[2] = { NULL }; local 247 out[0] = 250 out[1] = 255 lower_clip_vs(function->impl, ucp_enables, cv, out); [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_cliptest_tmp.h | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 34 struct vertex_header *out = info->verts; local 50 u_bitcast_f2u(out->data[viewport_index_output][0]): 0; 69 float *position = out->data[pos]; 77 viewport_index = u_bitcast_f2u(out->data[viewport_index_output][0]); 84 initialize_vertex_header(out); 92 clipvertex = out->data[cv]; 96 out->clip_pos[i] = position[i]; 144 clipdist = out->data[cd[0]][i]; 146 clipdist = out->data[cd[1]][i-4] [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 __func__, 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 __func__, count, stride, (void *)out, (void *)data) 141 uint32_t *out; local 173 float *out; 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/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/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/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);
|
/external/protobuf/benchmarks/ |
ProtoBench.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 76 System.out.println("Benchmarking " + type + " with file " + file); 146 System.out.println(); 174 System.out.println(name + ": " + iterations + " iterations in "
|
/external/protobuf/java/core/src/test/java/com/google/protobuf/ |
RopeByteStringTest.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 178 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 179 ObjectOutputStream oos = new ObjectOutputStream(out); 182 byte[] pickled = out.toByteArray();
|
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/ |
MessageNanoPrinter.java | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 211 StringBuffer out = new StringBuffer(); local 215 out.append(Character.toLowerCase(currentChar)); 217 out.append('_').append(Character.toLowerCase(currentChar)); 219 out.append(currentChar); 222 return out.toString();
|
/external/protobuf/src/google/protobuf/ |
message_unittest.cc | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 103 ofstream out; local 107 EXPECT_FALSE(message.SerializeToOstream(&out));
|
/external/python/cpython2/Modules/_ctypes/libffi/src/tile/ |
ffi.c | 23 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 73 assign_to_ffi_arg(ffi_sarg *out, void *in, const ffi_type *type, 79 *out = *(SINT8 *)in; 83 *out = *(UINT8 *)in; 87 *out = *(SINT16 *)in; 91 *out = *(UINT16 *)in; 101 *out = *(SINT32 *)in; 111 *out = val.s32; 116 *(float *)out = *(float *)in; 126 *(UINT64 *)out = *(UINT64 *)in 226 UINT64 *out; local [all...] |
/external/python/cpython2/Modules/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/r8/src/main/java/com/android/tools/r8/ |
PrintClassList.java | 47 System.out.print(maybeDeobfuscateType(map, clazz.type)); 48 System.out.println(); 62 System.out.println(map.originalNameOf(method)); 66 System.out.println(method.holder.toSourceString() + " " + signature); 75 System.out.println(map.originalNameOf(field)); 80 System.out.println(field.clazz.toSourceString() + " " + signature);
|