HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 301 - 325 of 3043) sorted by null

<<11121314151617181920>>

  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SppPropertyInfo.java 16 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
245 // Write the object out to a byte array
247 ObjectOutputStream out = new ObjectOutputStream(bos); local
248 out.writeObject(this);
249 out.flush();
250 out.close();
  /external/libopus/tests/
test_opus_padding.c 24 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out)); local
52 if (!in || !out) {
53 fprintf(stderr, "FAIL (out of memory)\n");
62 result = opus_decode(decoder, in, PACKETSIZE, out, FRAMESIZE, 0);
66 free(out);
  /external/llvm/
llvm-device-build.mk 72 define transform-device-td-to-out
llvm-host-build.mk 59 define transform-host-td-to-out
  /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/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/owasp/sanitizer/
Makefile 11 @echo " The output will be available under out/."
13 @echo " classes - Put Java .class files under out/."
25 @echo " directories of trunk checked out."
54 out:
55 mkdir -p out
57 out/classes: out
58 mkdir -p out/classes
60 out/genfiles: out
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
ElementAndAttributePolicyBasedSanitizerPolicy.java 26 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
50 private final HtmlStreamEventReceiver out; field in class:ElementAndAttributePolicyBasedSanitizerPolicy
63 HtmlStreamEventReceiver out,
66 this.out = out;
79 out.openDocument();
86 out.closeTag(tagNameToClose);
91 out.closeDocument();
96 out.text(textChunk);
156 out.closeTag(tagNameToClose)
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmshalf.c 21 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
510 } out; local
    [all...]
  /external/protobuf/java/src/device/main/java/com/google/protobuf/nano/android/
ParcelableExtendableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
66 public void writeToParcel(Parcel out, int flags) {
67 ParcelingUtil.writeToParcel(getClass(), this, out); local
ParcelableMessageNano.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
64 public void writeToParcel(Parcel out, int flags) {
65 ParcelingUtil.writeToParcel(getClass(), this, out); local
  /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/android/filesystems/
ramdisk_extractor_unittest.cpp 58 char* out = NULL; local
62 EXPECT_TRUE(android_extractRamdiskFile(path(), "foo", &out, &outSize));
64 EXPECT_TRUE(out);
65 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
66 free(out);
72 char* out = NULL; local
76 EXPECT_TRUE(android_extractRamdiskFile(path(), "bar2", &out, &outSize));
78 EXPECT_TRUE(out);
79 EXPECT_TRUE(!memcmp(out, kExpected, outSize));
80 free(out);
84 char* out = NULL; local
    [all...]
  /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...]

Completed in 40 milliseconds

<<11121314151617181920>>