/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 __FUNCTION__, 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 __FUNCTION__, count, stride, (void *)out, (void *)data) 141 uint32_t *out; local 173 float *out; local [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_format.c | 24 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 1708 int *out = colorOut->i; local 1750 float *out = colorOut->f; local [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/asm/ |
AnnotationWriter.java | 27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
256 * @param out where the annotations must be put.
258 void put(final ByteVector out) {
271 out.putInt(size);
272 out.putShort(n);
275 out.putByteArray(aw.bv.data, 0, aw.bv.length);
285 * @param out where the annotations must be put.
290 final ByteVector out)
296 out.putInt(size).putByte(panns.length - off);
308 out.putShort(n); [all...] |
/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/openssl/apps/ |
asn1pars.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 92 BIO *in=NULL,*out=NULL,*b64=NULL, *derout = NULL; local 133 else if (strcmp(*argv,"-out") == 0) 201 BIO_printf(bio_err," -out arg output file (output format is always DER\n"); 220 out=BIO_new(BIO_s_file()); 221 if ((in == NULL) || (out == NULL)) 226 BIO_set_fp(out,stdout,BIO_NOCLOSE|BIO_FP_TEXT); 230 out = BIO_push(tmpbio, out); [all...] |
dhparam.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 102 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 138 * -out arg - output file - default stdout 157 BIO *in=NULL,*out=NULL; local 200 else if (strcmp(*argv,"-out") == 0) 247 BIO_printf(bio_err," -out arg output file\n"); 410 out=BIO_new(BIO_s_file()); 411 if (out == NULL) 418 BIO_set_fp(out,stdout,BIO_NOCLOSE) [all...] |
dsa.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 80 * -out arg - output file - default stdout 104 BIO *in=NULL,*out=NULL; local 154 else if (strcmp(*argv,"-out") == 0) 211 BIO_printf(bio_err," -out arg output file\n"); 233 BIO_printf(bio_err," -noout don't print key out\n"); 250 out=BIO_new(BIO_s_file()); 251 if ((in == NULL) || (out == NULL)) 295 BIO_set_fp(out,stdout,BIO_NOCLOSE) [all...] |
dsaparam.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 * -out arg - output file - default stdout 116 BIO *in=NULL,*out=NULL; local 162 else if (strcmp(*argv,"-out") == 0) 222 BIO_printf(bio_err," -out arg output file\n"); 241 out=BIO_new(BIO_s_file()); 242 if ((in == NULL) || (out == NULL)) 260 BIO_set_fp(out,stdout,BIO_NOCLOSE); 264 out = BIO_push(tmpbio, out) [all...] |
ec.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 76 * -out arg - output file - default stdout 93 BIO *in = NULL, *out = NULL; local 139 else if (strcmp(*argv,"-out") == 0) 219 BIO_printf(bio_err, " -out arg output file\n"); 229 BIO_printf(bio_err, " -noout don't print key out\n"); 264 out = BIO_new(BIO_s_file()); 265 if ((in == NULL) || (out == NULL)) 313 BIO_set_fp(out, stdout, BIO_NOCLOSE); 317 out = BIO_push(tmpbio, out) [all...] |
genpkey.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 81 BIO *in = NULL, *out = NULL; local 138 else if (!strcmp (*args, "-out")) 201 BIO_printf(bio_err, "-out file output file\n"); 226 if (!(out = BIO_new_file (outfile, "wb"))) 235 out = BIO_new_fp (stdout, BIO_NOCLOSE); 239 out = BIO_push(tmpbio, out); 267 rv = PEM_write_bio_Parameters(out, pkey); 269 rv = PEM_write_bio_PrivateKey(out, pkey, cipher, NULL, 0 [all...] |