HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 2476 - 2500 of 4549) sorted by null

<<919293949596979899100>>

  /cts/tests/tests/security/src/android/security/cts/
OpenSSLHeartbleedTest.java 380 OutputStream out,
397 out,
417 OutputStream out,
446 out.write(recordBytes);
447 out.flush();
466 out.write(heartbeatRequestRecordBytes);
467 out.flush();
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 422 * The string begins at out.length - [return value].
424 private static int formatFloat(final char[] out, float val, int digits) {
427 out[out.length - 1] = '0';
439 int index = out.length - 1;
444 out[index--] = (char) (digit + '0');
447 out[index--] = '.';
452 out[index--] = '-';
    [all...]
  /device/google/dragon/audio/hal/
audio_hw.c 1474 struct stream_out *out = (struct stream_out *)usecase->stream; local
1492 struct stream_out *out = (struct stream_out *)usecase->stream; local
1800 struct stream_out *out = (struct stream_out *)stream; local
1814 struct stream_out *out = (struct stream_out *)stream; local
1822 struct stream_out *out = (struct stream_out *)stream; local
1829 struct stream_out *out = (struct stream_out *)stream; local
1855 struct stream_out *out = (struct stream_out *)stream; local
1881 struct stream_out *out = (struct stream_out *)stream; local
1977 struct stream_out *out = (struct stream_out *)stream; local
2016 struct stream_out *out = (struct stream_out *)stream; local
2025 struct stream_out *out = (struct stream_out *)stream; local
2062 struct stream_out *out = (struct stream_out *)stream; local
2255 struct stream_out *out = (struct stream_out *)stream; local
2693 struct stream_out *out; local
2797 struct stream_out *out = (struct stream_out *)stream; local
    [all...]
  /external/antlr/antlr-3.4/antlr-ant/main/antlr3-task/
antlr3.jar 
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
BlockRealMatrix.java 326 final BlockRealMatrix out = new BlockRealMatrix(rows, columns); local
330 for (int iBlock = 0; iBlock < out.blockRows; ++iBlock) {
331 for (int jBlock = 0; jBlock < out.blockColumns; ++jBlock) {
334 final double[] outBlock = out.blocks[blockIndex];
354 return out;
372 final BlockRealMatrix out = new BlockRealMatrix(rows, columns); local
375 for (int blockIndex = 0; blockIndex < out.blocks.length; ++blockIndex) {
376 final double[] outBlock = out.blocks[blockIndex];
384 return out;
399 final BlockRealMatrix out = new BlockRealMatrix(rows, columns) local
445 final BlockRealMatrix out = new BlockRealMatrix(rows, columns); local
466 final BlockRealMatrix out = new BlockRealMatrix(rows, columns); local
486 final BlockRealMatrix out = new BlockRealMatrix(rows, columns); local
512 final BlockRealMatrix out = new BlockRealMatrix(rows, m.getColumnDimension()); local
575 final BlockRealMatrix out = new BlockRealMatrix(rows, m.columns); local
712 final BlockRealMatrix out = local
892 final BlockRealMatrix out = new BlockRealMatrix(1, columns); local
983 final BlockRealMatrix out = new BlockRealMatrix(rows, 1); local
1140 final double[] out = new double[columns]; local
1189 final double[] out = new double[rows]; local
1310 final BlockRealMatrix out = new BlockRealMatrix(nCols, nRows); local
1367 final double[] out = new double[rows]; local
1411 final double[] out = new double[columns]; local
    [all...]
  /external/boringssl/src/include/openssl/
asn1t.h 48 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
608 typedef int ASN1_ex_i2d(ASN1_VALUE **pval, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
612 typedef int ASN1_ex_print_func(BIO *out, ASN1_VALUE **pval,
618 typedef int ASN1_primitive_print(BIO *out, ASN1_VALUE **pval, const ASN1_ITEM *it, int indent, const ASN1_PCTX *pctx);
678 BIO *out; member in struct:ASN1_PRINT_ARG_st
686 BIO *out; member in struct:ASN1_STREAM_ARG_st
808 int i2d_##fname(stname *a, unsigned char **out) \
810 return ASN1_item_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(itname));\
814 int i2d_##stname##_NDEF(stname *a, unsigned char **out) \
816 return ASN1_item_ndef_i2d((ASN1_VALUE *)a, out, ASN1_ITEM_rptr(stname));
    [all...]
  /external/clang/lib/Basic/
SourceManager.cpp 109 // that we are in an inconsistent situation and error out as quickly as
195 "Adding line entries out of order!");
230 "Adding line entries out of order!");
483 // Make sure we're not about to run out of source locations.
566 assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
579 "Ran out of source locations!");
619 assert(Index < LoadedSLocEntryTable.size() && "FileID out of range");
628 "Ran out of source locations!");
2145 llvm::raw_ostream &out = llvm::errs(); local
    [all...]
  /external/clang/test/SemaCXX/
typo-correction.cpp 96 unknown_type_test::stream_out out; // expected-error{{no type named 'stream_out' in namespace 'unknown_type_test'; did you mean 'StreamOut'?}} variable
107 stream_out out; // expected-error{{unknown type name 'stream_out'; did you mean 'StreamOut'?}} member in namespace:cache_invalidation_test
120 void TestRedecl::add_in(int i) {} // expected-error{{out-of-line definition of 'add_in' does not match any declaration in 'TestRedecl'; did you mean 'add_it'?}}
174 void Child::add_types(int value) {} // expected-error{{out-of-line definition of 'add_types' does not match any declaration in 'Child'}}
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCommandBuffersTests.cpp 685 std::ostringstream out; local
686 out << "allocateManyPrimaryBuffersTest succeded: created " << minCommandBuffer << " command buffers";
688 return tcu::TestStatus::pass(out.str());
790 std::ostringstream out; local
791 out << "allocateManySecondaryBuffersTest succeded: created " << minCommandBuffer << " command buffers";
793 return tcu::TestStatus::pass(out.str());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp 2200 const float out = ldexp(in0, in1); local
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderApiTests.cpp 88 "layout(location = 0) out mediump vec4 o_fragColor;\n"
120 void sliceSourceString (const std::string& in, ShaderSources& out, const int numSlices, const size_t paddingLength = 0)
130 out.strings.push_back(in.substr(ndx * sliceSize, sliceSize) + padding);
133 out.lengths.push_back((int)sliceSize);
141 out.strings.push_back(lastString + padding);
144 out.lengths.push_back(lastStringLength);
247 std::ostringstream out; local
249 out << "#version 300 es\n";
252 out << "layout(location = 0) out mediump vec4 o_fragColor;\n"
597 std::ostringstream out; local
704 std::ostringstream out; local
    [all...]
  /external/deqp/modules/glshared/
glsShaderExecUtil.cpp 98 const char* out = usesInout ? "out" : "varying"; local
123 src << "flat " << out << " " << glu::declare(intType, outputPrefix + output->name) << ";\n";
126 src << "flat " << out << " " << glu::declare(output->varType, outputPrefix + output->name) << ";\n";
187 << "layout(points, max_vertices = 1) out;\n";
202 src << "flat out " << glu::declare(intType, outputPrefix + output->name) << ";\n";
205 src << "flat out " << glu::declare(output->varType, outputPrefix + output->name) << ";\n";
283 << "flat out " << glu::declare(input->varType, outputPrefix + input->name) << ";\n";
    [all...]
  /external/dhcpcd-6.8.2/
dhcp.c 24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
289 decode_rfc3442(char *out, size_t len, const uint8_t *p, size_t pl)
296 char *o = out;
316 if (!out) {
325 if (o != out) {
348 if (out)
349 return o - out;
465 decode_rfc5969(char *out, size_t len, const uint8_t *p, size_t pl)
487 if (out) {
488 b= snprintf(out, len
2017 uint8_t *out; local
    [all...]
  /external/e2fsprogs/debugfs/
debugfs.c 340 FILE *out; local
359 out = open_pager();
365 list_super2(current_fs->super, out);
368 fprintf(out, "Directories: %d\n", numdirs);
371 close_pager(out);
378 fprintf(out, " Group %2d: block bitmap at %llu, "
397 fprintf(out, "%u unused %s\n",
403 &first, out);
405 &first, out);
407 fprintf(out, "%sChecksum 0x%04x"
851 FILE *out; local
893 FILE *out; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/34/1/.cp/ant_tasks/
pde-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-netrexx.jar 
  /external/eigen/unsupported/test/mpreal/
mpreal.h 1731 std::string out; local
    [all...]
  /external/fio/
options.c 595 goto out;
609 goto out;
613 goto out;
630 goto out;
639 goto out;
673 out:
741 log_err("fio: pareto input out of range (0 < input < 1.0)\n");
873 goto out;
878 goto out;
882 out
3801 char out[OPT_LEN_MAX+1]; local
    [all...]
server.c 1377 struct cmd_sendfile out; local
1394 verify_state_gen_name((char *) out.path, sizeof(out.path), name, me,
1397 fio_net_send_cmd(server_fd, FIO_NET_CMD_SENDFILE, &out, sizeof(out),
1404 log_err("fio: timed out waiting for reply\n");
    [all...]
  /external/guice/extensions/persist/lib/
jboss-archive-browsing.jar 
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CompatibilityTest.java 129 System.out.println(type==0 ? "Gregorian" : "Julian");
157 System.out.println("JD +/-" +
481 if (dow < min || dow > max) errln("FAIL: Day of week " + dow + " out of range");
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateTimeGeneratorTest.java 884 Collection<String> out = new LinkedHashSet<String>(); local
    [all...]
MeasureUnitTest.java     [all...]
NumberRegression.java 220 String out = nf.format(x); local
221 logln("0.00159999 formats with 4 fractional digits to " + out);
223 if (!out.equals(expected))
691 String out = df.format(x); local
692 logln("" + x + " formats with 1 fractional digits to " + out);
693 if (!out.equals(expected)) errln("FAIL: Expected " + expected);
1162 String out = nf.format(pi); local
1369 String out = fmt.format(in); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBITestMonkey.java 337 //fSets.add(fKatakanaSet); // TODO: work out how to test katakana
715 // while the invalid values shift out and the "this" and
741 // We do this rule out-of-order because the adjustment does
775 // -1 positions out of prevPos yet - loop back to advance the
    [all...]

Completed in 5561 milliseconds

<<919293949596979899100>>