HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1126 - 1150 of 5424) sorted by null

<<41424344454647484950>>

  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 32 private final Writer out; field in class:TwoColumnOutput
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
90 if (out == null) {
91 throw new NullPointerException("out == null");
109 this.out = out;
121 * @param out {@code non-null;} stream to send final output to
126 public TwoColumnOutput(OutputStream out, int leftWidth, int rightWidth,
128 this(new OutputStreamWriter(out), leftWidth, rightWidth, spacer)
    [all...]
  /dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/
InvokeCustom.java 27 System.out.println("targetMethodTest4 from Super");
37 System.out.println("InvokeCustom.<init>(" + i + ")");
41 System.out.println("Hello World!");
46 System.out.println(z);
47 System.out.println(b);
48 System.out.println(c);
49 System.out.println(s);
50 System.out.println(i);
51 System.out.println(f);
52 System.out.println(l)
    [all...]
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
ExampleAgent.java 127 // out of the buffering stream object and send it off.
178 * Write out the new state file: the version number, followed by the
183 DataOutputStream out = new DataOutputStream(outstream); local
185 out.writeInt(AGENT_VERSION);
186 out.writeInt(mFilling);
187 out.writeBoolean(mAddMayo);
188 out.writeBoolean(mAddTomato);
195 * be running while we change its data out from under it. That, in
196 * turn, means that there is no need to send out any sort of notification
MultiRecordExampleAgent.java 107 DataOutputStream out = new DataOutputStream(bufStream); local
111 out.writeInt(mFilling);
117 out.writeBoolean(mAddMayo);
123 out.writeBoolean(mAddTomato);
132 * Write out the new state file: the version number, followed by the
137 DataOutputStream out = new DataOutputStream(outstream); local
139 out.writeInt(mFilling);
140 out.writeBoolean(mAddMayo);
141 out.writeBoolean(mAddTomato);
154 * On restore, we pull the various bits of data out of the restore stream
    [all...]
  /development/tools/bugreport/src/com/android/bugreport/inspector/
DeadlockDetector.java 144 System.out.println("Offending thread:");
145 System.out.print(" pid=" + offendingProcess.pid + " \"" + offendingThread.name
148 System.out.print(" outbound=" + offendingThread.outboundBinderPackage + "."
153 System.out.print(" inbound=" + offendingThread.inboundBinderPackage + "."
157 System.out.println();
181 System.out.println("Thread " + thread.tid
195 if (dump) System.out.println("Involved threads:");
198 System.out.print(" pid=" + tr.process.pid + " \"" + tr.thread.name
201 System.out.print(" outbound=" + tr.thread.outboundBinderPackage + "."
205 System.out.print(" inbound=" + tr.thread.inboundBinderPackage + ".
    [all...]
  /device/generic/goldfish/camera/
CallbackNotifier.cpp 64 int out = 0; local
65 while (msg != 0 && out < max && index < lCameraMessagesNum) {
71 strings[out] = lCameraMessages[index];
72 out++;
78 return out;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
crc32.c 97 out is a one). We start with the highest power (least significant bit) of
157 /* write out CRC tables to crc32.h */
159 FILE *out; local
161 out = fopen("crc32.h", "w");
162 if (out == NULL) return;
163 fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
164 fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
165 fprintf(out, "local const unsigned long FAR ");
166 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
167 write_table(out, crc_table[0]);
    [all...]
minigzip.c 75 void gz_compress OF((FILE *in, gzFile out));
77 int gz_compress_mmap OF((FILE *in, gzFile out));
79 void gz_uncompress OF((gzFile in, FILE *out));
98 void gz_compress(in, out)
100 gzFile out;
110 if (gz_compress_mmap(in, out) == Z_OK) return;
120 if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
123 if (gzclose(out) != Z_OK) error("failed gzclose");
131 int gz_compress_mmap(in, out)
199 gzFile out; local
228 FILE *out; local
    [all...]
  /external/android-clat/
clatd_microbenchmark.c 105 clat_packet out = { local
124 return send_tun(fd, out, sizeof(out) / sizeof(out[0]));
150 printf("Timed out after %d packets!\n", i);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/polynomials/
PolynomialFunctionLagrangeForm.java 109 double[] out = new double[x.length]; local
110 System.arraycopy(x, 0, out, 0, x.length);
111 return out;
122 double[] out = new double[y.length]; local
123 System.arraycopy(y, 0, out, 0, y.length);
124 return out;
141 double[] out = new double[coefficients.length]; local
142 System.arraycopy(coefficients, 0, out, 0, coefficients.length);
143 return out;
175 // find out the abscissa closest to
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
AbstractIntegerDistribution.java 248 int[] out = new int[sampleSize]; local
250 out[i] = sample();
252 return out;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/correlation/
PearsonsCorrelation.java 141 double[][] out = new double[nVars][nVars]; local
145 out[i][j] = FastMath.sqrt((1 - r * r) /(nObs - 2));
148 return new BlockRealMatrix(out);
167 double[][] out = new double[nVars][nVars]; local
171 out[i][j] = 0d;
175 out[i][j] = 2 * tDistribution.cumulativeProbability(-t);
179 return new BlockRealMatrix(out);
  /external/apache-http/src/org/apache/commons/codec/language/
Soundex.java 262 char out[] = {'0', '0', '0', '0'}; local
265 out[0] = str.charAt(0);
267 while ((incount < str.length()) && (count < out.length)) {
271 out[count++] = mapped;
276 return new String(out);
  /external/bison/src/
print.c 47 fprintf (out, _(" type %d is %s\n"), extnum, tags[token]);
71 print_core (FILE *out, state *s)
89 fputc ('\n', out);
104 rule_lhs_print (&rules[r], previous_lhs, out);
108 fprintf (out, " %s", symbols[*sp]->tag);
109 fputs (" .", out);
111 fprintf (out, " %s", symbols[*sp]->tag);
116 state_rule_lookahead_tokens_print (s, &rules[r], out);
118 fputc ('\n', out);
125 | OUT.
506 FILE *out = xfopen (spec_verbose_file, "w"); local
    [all...]
  /external/boringssl/src/crypto/bio/
bio_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
125 // Check the same message is read back out.
212 uint8_t *out; local
214 int ok = BIO_read_asn1(bio.get(), &out, &out_len, param.max_len);
216 out = nullptr;
218 bssl::UniquePtr<uint8_t> out_storage(out);
222 EXPECT_EQ(Bytes(input.data(), param.expected_len), Bytes(out, out_len));
244 // Data written in one end may be read out the other.
  /external/boringssl/src/crypto/dsa/
dsa_test.cc 34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
187 FILE *out = nullptr; member in struct:GenerateContext
210 fputc(c, ctx->out);
211 fflush(ctx->out);
219 static int TestGenerate(FILE *out) {
227 fprintf(out, "test generation of DSA parameters\n");
230 ctx.out = out;
239 fprintf(out, "seed\n")
    [all...]
  /external/boringssl/src/crypto/fipsmodule/ec/
ec_test.cc 12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
44 // spelled out rather than using a named curve.
115 // EncodeECPrivateKey encodes |key| as an ECPrivateKey structure into |*out|. It
117 static bool EncodeECPrivateKey(std::vector<uint8_t> *out, const EC_KEY *key) {
126 out->assign(der, der + der_len);
137 std::vector<uint8_t> out; local
138 ASSERT_TRUE(EncodeECPrivateKey(&out, key.get()));
139 EXPECT_EQ(Bytes(kECKeyWithoutPublic), Bytes(out.data(), out.size()));
168 std::vector<uint8_t> out; local
190 std::vector<uint8_t> out; local
    [all...]
  /external/boringssl/src/decrepit/xts/
xts.c 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
66 uint8_t *out, size_t len, int enc) {
95 OPENSSL_memcpy(out, scratch.c, 16);
97 ((uint64_t *)out)[0] = scratch.u[0] ^= tweak.u[0];
98 ((uint64_t *)out)[1] = scratch.u[1] ^= tweak.u[1];
101 out += 16;
116 out[i] = scratch.c[i];
124 OPENSSL_memcpy(out - 16, scratch.c, 16);
151 out[16 + i] = scratch.c[i];
160 OPENSSL_memcpy(out, scratch.c, 16)
226 EVP_CIPHER_CTX *out = ptr; local
    [all...]
  /external/boringssl/src/ssl/
s3_pkt.cc 34 * The word 'cryptographic' can be left out if the rouines from the library
49 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
101 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
205 /* Ensure that if we end up with a smaller value of data to write out than
308 uint8_t *out; local
310 if (!ssl_write_buffer_init(ssl, &out, max_out)) {
320 out, ssl->s3->pending_flight->data + ssl->s3->pending_flight_offset,
327 if (!tls_seal_record(ssl, out + flight_len, &ciphertext_len,
349 static int consume_record(SSL *ssl, uint8_t *out, int len, int peek) {
360 OPENSSL_memcpy(out, rr->data, len)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1ApplicationSpecific.java 156 void encode(ASN1OutputStream out) throws IOException
164 out.writeEncoded(classBits, tag, octets);
ASN1GeneralizedTime.java 380 ASN1OutputStream out)
383 out.writeEncoded(BERTags.GENERALIZED_TIME, time);
ASN1UTCTime.java 293 ASN1OutputStream out)
296 out.write(BERTags.UTC_TIME);
300 out.writeLength(length);
304 out.write((byte)time[i]);
BEROctetString.java 136 ASN1OutputStream out)
139 out.write(BERTags.CONSTRUCTED | BERTags.OCTET_STRING);
141 out.write(0x80);
144 // write out the octet array
148 out.writeObject((ASN1Encodable)e.nextElement());
151 out.write(0x00);
152 out.write(0x00);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
BCDSAPrivateKey.java 158 ObjectOutputStream out)
161 out.defaultWriteObject();
163 out.writeObject(dsaSpec.getP());
164 out.writeObject(dsaSpec.getQ());
165 out.writeObject(dsaSpec.getG());

Completed in 316 milliseconds

<<41424344454647484950>>