/external/llvm/ |
llvm-host-build.mk | 51 define transform-host-td-to-out
|
/external/llvm/tools/llvm-diff/ |
DiffConsumer.h | 68 raw_ostream &out; member in class:llvm::DiffConsumer 79 : out(errs()), Differences(false), Indent(0) {}
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_caps.c | 23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 35 * all checks pass returns TRUE and out is set to the last element of 37 * out to the index of the start of the first failing check. 40 util_check_caps_out(struct pipe_screen *screen, const unsigned *list, int *out) 49 *out = i - 2; 56 *out = i - 3; 63 *out = i - 3; 73 *out = i - 2; 81 *out = i - 3; 86 *out = i - 1 105 int out; local 231 int i, out = 0; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_maos_arrays.c | 25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 51 static void emit_s0_vec(uint32_t *out, GLvoid *data, int stride, int count) 59 out[0] = *(int *)data; 60 out[1] = 0; 61 out += 2; 66 static void emit_stq_vec(uint32_t *out, GLvoid *data, int stride, int count) 75 out[0] = *(int *)data; 76 out[1] = *(int *)(data+4); 77 out[2] = *(int *)(data+12); 78 out += 3 88 uint32_t *out; local [all...] |
/external/mockito/src/org/mockito/internal/debugging/ |
MockitoDebuggerImpl.java | 22 String out = "";
local 24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
37 return print(out);
39 out += line("********************************");
40 out += line("*** Unused stubs ***"); [all...] |
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/ |
Hex.java | 37 char[] out = new char[(l << 1) + (group > 0 ? (l / group) : 0)]; local 41 out[j++] = '-'; 44 out[j++] = DIGITS[(0xF0 & data[i]) >>> 4]; 45 out[j++] = DIGITS[0x0F & data[i]]; 47 return new String(out);
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/ |
Debug.java | 18 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE 30 System.out.printf("%3d, ", output[i]); 33 System.out.println(); 41 System.out.printf("%3d, ", output[i]); 44 System.out.println(); 51 System.out.printf("%3d, ", output.get()); 53 System.out.println(); 61 System.out.printf("%3d, ", table[i]); 64 System.out.println(); 69 // System.out.printf("> " + format + "\n", args) [all...] |
/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/ |
SpdyWriter.java | 31 final DataOutputStream out; field in class:SpdyWriter 35 SpdyWriter(OutputStream out) { 36 this.out = new DataOutputStream(out); 52 out.writeInt(0x80000000 | (SpdyConnection.VERSION & 0x7fff) << 16 | type & 0xffff); 53 out.writeInt((flags & 0xff) << 24 | length & 0xffffff); 54 out.writeInt(streamId & 0x7fffffff); 55 out.writeInt(associatedStreamId & 0x7fffffff); 56 out.writeShort((priority & 0x7) << 13 | (unused & 0x1f) << 8 | (slot & 0xff)); 57 nameValueBlockBuffer.writeTo(out); [all...] |
/external/openssl/apps/ |
gendsa.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 86 BIO *out=NULL,*in=NULL; local 106 if (strcmp(*argv,"-out") == 0) 174 BIO_printf(bio_err," -out file - output the key to 'file'\n"); 230 out=BIO_new(BIO_s_file()); 231 if (out == NULL) goto end; 235 BIO_set_fp(out,stdout,BIO_NOCLOSE); 239 out = BIO_push(tmpbio, out); [all...] |
nseq.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 73 BIO *in = NULL, *out = NULL; local 89 } else if (!strcmp (*args, "-out")) { 103 BIO_printf (bio_err, "-out file output file\n"); 117 if (!(out = BIO_new_file (outfile, "w"))) { 123 out = BIO_new_fp(stdout, BIO_NOCLOSE); 127 out = BIO_push(tmpbio, out); 143 PEM_write_bio_NETSCAPE_CERT_SEQUENCE(out, seq); 156 dump_cert_text(out, x509) [all...] |
pkeyparam.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 72 BIO *in = NULL, *out = NULL; local 101 else if (!strcmp (*args, "-out")) 133 BIO_printf(bio_err, "-out file output file\n"); 160 if (!(out = BIO_new_file (outfile, "w"))) 169 out = BIO_new_fp (stdout, BIO_NOCLOSE); 173 out = BIO_push(tmpbio, out); 187 PEM_write_bio_Parameters(out,pkey); 190 EVP_PKEY_print_params(out, pkey, 0, NULL) [all...] |
/external/openssl/crypto/bn/ |
exptest.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 77 BIO *out=NULL; local 101 out=BIO_new(BIO_s_file()); 103 if (out == NULL) EXIT(1); 104 BIO_set_fp(out,stdout,BIO_NOCLOSE); 127 ERR_print_errors(out); 135 ERR_print_errors(out); 143 ERR_print_errors(out); 151 ERR_print_errors(out); [all...] |
/external/openssl/crypto/des/ |
ecb_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 114 unsigned char *out = &(*output)[0]; local 119 l=ll[0]; l2c(l,out); 120 l=ll[1]; l2c(l,out);
|
pcbc_enc.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 68 unsigned char *out,*iv; local 71 out=output; 94 l2c(tout0,out); 95 l2c(tout1,out); 112 l2c(tout0,out); 113 l2c(tout1,out); 116 l2cn(tout0,tout1,out,length);
|
/external/openssl/crypto/pkcs12/ |
p12_decr.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 75 unsigned char *out; local 87 if(!(out = OPENSSL_malloc(inlen + EVP_CIPHER_CTX_block_size(&ctx)))) { 92 if (!EVP_CipherUpdate(&ctx, out, &i, in, inlen)) 94 OPENSSL_free(out); 95 out = NULL; 101 if(!EVP_CipherFinal_ex(&ctx, out + i, &i)) { 102 OPENSSL_free(out); 103 out = NULL; 109 if (data) *data = out; 123 unsigned char *out; local [all...] |
/external/openssl/crypto/rc4/ |
rc4.c | 35 * The word 'cryptographic' can be left out if the rouines from the library 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 69 " -out arg - output file - default stdout\n", 76 FILE *in=NULL,*out=NULL; local 93 else if (strcmp(*argv,"-out") == 0) 134 out=stdout; 137 out=fopen(outfile,"w"); 138 if (out == NULL) 150 setmode(fileno(out),O_BINARY); 181 i=fwrite(buf,(unsigned int)i,1,out); [all...] |
/external/protobuf/src/google/protobuf/ |
message_unittest.cc | 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 100 ofstream out; local 104 EXPECT_FALSE(message.SerializeToOstream(&out));
|
/external/qemu/audio/ |
mixeng_template.h | 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 114 struct st_sample *out = dst; local 125 out->l = VOL (glue (conv_, ET) (*in++), vol->l); 126 out->r = VOL (glue (conv_, ET) (*in++), vol->r); 127 out += 1; 134 struct st_sample *out = dst; local 145 out->l = VOL (glue (conv_, ET) (in[0]), vol->l); 146 out->r = out->l; 147 out += 1 156 IN_T *out = (IN_T *) dst; local 168 IN_T *out = (IN_T *) dst; local [all...] |
rate_template.h | 22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 36 struct st_sample ilast, icur, out; local 89 out.l = (ilast.l * (1.0 - t)) + icur.l * t; 90 out.r = (ilast.r * (1.0 - t)) + icur.r * t; 93 out.l = (ilast.l * ((int64_t) UINT_MAX - t) + icur.l * t) >> 32; 94 out.r = (ilast.r * ((int64_t) UINT_MAX - t) + icur.r * t) >> 32; 98 OP (obuf->l, out.l); 99 OP (obuf->r, out.r);
|
/external/skia/tests/ |
ColorFilterTest.cpp | 98 SkPMColor in, out; local 104 lf->filterSpan(&in, 1, &out); 105 REPORTER_ASSERT(reporter, SkGetPackedA32(out) == i); 106 REPORTER_ASSERT(reporter, SkGetPackedR32(out) == 0); 107 REPORTER_ASSERT(reporter, SkGetPackedG32(out) == 0); 108 REPORTER_ASSERT(reporter, SkGetPackedB32(out) == 0); 114 lf->filterSpan(&in, 1, &out); 115 REPORTER_ASSERT(reporter, out == SK_ColorTRANSPARENT); 121 lf->filterSpan(&in, 1, &out); 122 REPORTER_ASSERT(reporter, out != in) [all...] |
/external/smack/src/org/jivesoftware/smack/util/collections/ |
ReferenceMap.java | 146 * Write the map out using a custom routine. 148 private void writeObject(ObjectOutputStream out) throws IOException { 149 out.defaultWriteObject(); 150 doWriteObject(out);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/ |
Instruction11n.java | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 67 public void writeInstruction(AnnotatedOutput out, int currentCodeAddress) { 68 out.writeByte(opcode.value); 69 out.writeByte((litB << 4) | regA);
|
Instruction12x.java | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 61 public void writeInstruction(AnnotatedOutput out, int currentCodeAddress) { 62 out.writeByte(opcode.value); 63 out.writeByte((regB << 4) | regA);
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/ |
DoubleEncodedValue.java | 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 59 public void writeValue(AnnotatedOutput out) { 62 if (out.annotates()) { 63 out.annotate(1, "value_type=" + ValueType.VALUE_DOUBLE.name() + ",value_arg=" + (bytes.length - 1)); 64 out.annotate(bytes.length, "value: " + value); 67 out.writeByte(ValueType.VALUE_DOUBLE.value | ((bytes.length - 1) << 5)); 68 out.write(bytes);
|
EnumEncodedValue.java | 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 62 public void writeValue(AnnotatedOutput out) { 65 if (out.annotates()) { 66 out.annotate(1, "value_type=" + ValueType.VALUE_ENUM.name() + ",value_arg=" + (bytes.length - 1)); 67 out.annotate(bytes.length, "value: " + value.getFieldString()); 70 out.writeByte(ValueType.VALUE_ENUM.value | ((bytes.length - 1) << 5)); 71 out.write(bytes);
|