HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 1101 - 1125 of 4560) sorted by null

<<41424344454647484950>>

  /external/protobuf/benchmarks/
ProtoBench.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
76 System.out.println("Benchmarking " + type + " with file " + file);
146 System.out.println();
174 System.out.println(name + ": " + iterations + " iterations in "
  /external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
197 StringBuffer out = new StringBuffer(); local
201 out.append(Character.toLowerCase(currentChar));
203 out.append('_').append(Character.toLowerCase(currentChar));
205 out.append(currentChar);
208 return out.toString();
  /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/protobuf/src/google/protobuf/stubs/
strutil.h 28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
120 // Good for keeping html characters or protocol characters (\t) out
153 string out = s; local
154 UpperString(&out);
155 return out;
  /external/selinux/policycoreutils/semanage/
test-semanage.py 37 out, err = p.communicate()
41 print("Verify semanage export -f /tmp/out")
42 p = Popen(['semanage', "export", '-f', '/tmp/out'], stdout=PIPE)
43 out, err = p.communicate()
47 out, err = p.communicate()
51 out, err = p.communicate()
53 print("Verify semanage import -f /tmp/out") namespace
54 p = Popen(['semanage', "import", '-f', '/tmp/out'], stdout=PIPE)
55 out, err = p.communicate()
57 print("Verify semanage import -S targeted -f /tmp/out") namespace
    [all...]
  /external/skia/include/private/
SkTHash.h 214 Pair* out = fTable.set(in); local
215 return &out->val;
  /external/skia/tests/
ColorFilterTest.cpp 119 SkPMColor in, out; local
125 lf->filterSpan(&in, 1, &out);
126 REPORTER_ASSERT(reporter, SkGetPackedA32(out) == i);
127 REPORTER_ASSERT(reporter, SkGetPackedR32(out) == 0);
128 REPORTER_ASSERT(reporter, SkGetPackedG32(out) == 0);
129 REPORTER_ASSERT(reporter, SkGetPackedB32(out) == 0);
135 lf->filterSpan(&in, 1, &out);
136 REPORTER_ASSERT(reporter, out == SK_ColorTRANSPARENT);
142 lf->filterSpan(&in, 1, &out);
143 REPORTER_ASSERT(reporter, out != in)
    [all...]
  /external/sl4a/Utils/src/com/googlecode/android_scripting/
FileUtils.java 149 StringBuilder out = new StringBuilder(); local
153 out.append(String.valueOf(buffer, 0, numRead));
156 return out.toString();
  /external/sl4a/Utils/src/com/trilead/ssh2/
StreamGobbler.java 119 FileOutputStream out = null; local
121 out = new FileOutputStream(log, false);
125 mLogStream = out;
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SLF4JLogFactory.java 182 System.out.println("WARN: The method " + SLF4JLogFactory.class + "#release() was invoked.");
183 System.out.println("WARN: Please see http://www.slf4j.org/codes.html#release for an explanation.");
184 System.out.flush();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexDataWriter.java 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
95 public static void writeInt(OutputStream out, int value) throws IOException {
96 out.write(value);
97 out.write(value >> 8);
98 out.write(value >> 16);
99 out.write(value >> 24);
108 throw new ExceptionWithContext("Short value out of range: %d", value);
116 throw new ExceptionWithContext("Unsigned short value out of range: %d", value);
124 throw new ExceptionWithContext("Unsigned byte value out of range: %d", value);
129 public static void writeUleb128(OutputStream out, int value) throws IOException
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/external/biz/base64Coder/
Base64Coder.java 162 char[] out = new char[oLen]; local
174 out[op++] = map1[o0];
175 out[op++] = map1[o1];
176 out[op] = op < oDataLen ? map1[o2] : '=';
178 out[op] = op < oDataLen ? map1[o3] : '=';
181 return out;
272 byte[] out = new byte[oLen];
292 out[op++] = (byte) o0;
294 out[op++] = (byte) o1;
296 out[op++] = (byte) o2
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue64/
ParameterizedTypeTest.java 44 String out = yaml.dump(methodDesc); local
45 // System.out.println(out);
48 out);
49 MethodDesc parsed = (MethodDesc) yaml.load(out);
  /external/speex/libspeex/
fftwrap.c 30 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
45 static int maximize_range(spx_word16_t *in, spx_word16_t *out, spx_word16_t bound, int len)
64 out[i] = SHL16(in[i], shift);
69 static void renorm_range(spx_word16_t *in, spx_word16_t *out, int shift, int len)
74 out[i] = PSHR16(in[i], shift);
98 void spx_fft(void *table, float *in, float *out)
100 if (in==out)
106 out[i] = scale*in[i];
111 out[i] = scale*in[i];
113 spx_drft_forward((struct drft_lookup *)table, out);
174 float *out; member in struct:fftw_config
    [all...]
  /external/valgrind/drd/tests/
circular_buffer.c 42 int out; member in struct:__anon25395
45 /* Mutex that protects 'out'. */
99 b->out = 0;
104 int out; local
108 out = fetch_and_add(&b->out, 1);
109 if (out >= BUFFER_MAX)
111 fetch_and_add(&b->out, -BUFFER_MAX);
112 out -= BUFFER_MAX;
114 *d = b->buffer[out];
    [all...]
  /external/vogar/src/vogar/target/junit/
Junit4.java 58 List<VogarTest> out, Class<?> testClass, Collection<String> methodNames) {
71 out.add(new IgnoredTest(testClass, m));
73 addAllParameterizedTests(out, testClass, m, argCollection);
75 out.add(new ConfigurationError(testClass.getName() + "#" + m.getName(),
82 addAllParameterizedTests(out, testClass, testClass.getMethod(methodName),
85 out.add(new ConfigurationError(testClass.getName() + "#" + methodName, e));
90 isJunit4TestClass |= getSuiteTests(out, testClass);
93 out.add(new ConfigurationError(testClass.getName(),
114 private static void addAllParameterizedTests(List<VogarTest> out, Class<?> testClass, Method m,
117 out.add(TestMethod.create(testClass, m, null))
    [all...]
  /external/webrtc/webrtc/base/
stream_unittest.cc 100 char out[kSize * 2]; local
109 EXPECT_EQ(SR_BLOCK, stream->Read(out, kSize, &bytes, NULL));
125 EXPECT_EQ(SR_SUCCESS, stream->Read(out, kSize, &bytes, NULL));
127 EXPECT_EQ(0, memcmp(in, out, kSize));
130 EXPECT_EQ(SR_BLOCK, stream->Read(out, kSize, &bytes, NULL));
137 EXPECT_EQ(SR_SUCCESS, stream->Read(out, kSize * 2, &bytes, NULL));
139 EXPECT_EQ(0, memcmp(in, out, kSize));
144 EXPECT_EQ(SR_SUCCESS, stream->Read(out, kSize / 2, &bytes, NULL));
146 EXPECT_EQ(0, memcmp(in, out, kSize / 2));
151 EXPECT_EQ(SR_SUCCESS, stream->Read(out, kSize / 2, &bytes, NULL))
328 char out[kSize * 2]; local
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/acm2/
rent_a_codec_unittest.cc 45 uint8_t out[kPacketSizeSamples]; local
48 encoder_->Encode(timestamp_, kZeroData, kPacketSizeSamples, out);
  /external/webrtc/webrtc/modules/audio_processing/utility/
delay_estimator_wrapper.c 28 uint32_t out = (in | mask); local
30 return out;
59 // - out : Binary spectrum.
66 uint32_t out = 0; local
89 out = SetBit(out, i - kBandFirst);
93 return out;
100 uint32_t out = 0; local
119 out = SetBit(out, i - kBandFirst)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tls_common.c 112 u8 *out; local
114 out = os_malloc(len);
115 if (out == NULL)
119 out, len)) {
120 os_free(out);
124 return out;
146 u8 *out; local
155 out = os_malloc(*len);
156 if (out == NULL)
160 out[0] = eap_type
    [all...]
  /external/zlib/src/contrib/inflate86/
inffas86.c 37 Decode literal, length, and distance codes and write out the resulting
54 LEN -- ran out of enough output space or enough available input
83 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */ member in struct:inffast_ar
85 /* 48 24 */ unsigned char FAR *end; /* r10 while out < end */
112 ar.out = strm->next_out;
113 ar.beg = ar.out - (start - strm->avail_out);
114 ar.end = ar.out + (strm->avail_out - PAD_AVAIL_OUT);
141 " movq 32(%%rsp), %%rdi\n" /* rdi = out */
282 " subq 40(%%rsp), %%rax\n" /* nbytes = out - beg */
289 " subq %%r15, %%rsi\n" /* from = out - dist *
    [all...]
  /external/zlib/src/
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...]
  /external/zlib/src/examples/
zran.c 68 off_t out; /* corresponding offset in uncompressed data */ member in struct:point
90 /* Add an entry to the access point list. If out of memory, deallocate the
93 off_t in, off_t out, unsigned left, unsigned char *window)
125 next->out = out;
141 returns the number of access points on success (>= 1), Z_MEM_ERROR for out
191 /* inflate until out of input, output, or at end of block --
265 while (--ret && here[1].out <= offset)
291 offset -= here->out;
379 fprintf(stderr, "zran: out of memory\n")
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
block_switch.c 300 Word32 out; local
307 out = accu3 - accu2;
310 states1 = out;
312 tempFiltered = extract_h(out);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
dct_inline.h 29 int32 out; local
33 out = op2 * 724 + op3; /* op1 is not used here */
35 return out;
62 int32 out; local
66 out = k6 * 1338 + k1;
68 return out;
73 int32 out; local
77 out = k6 * 946 + k1;
79 return out;
113 int32 out; local
117 smlabb out, op1, op2, op3 local
149 int32 out; local
153 smlabb out, k6, k14, k1 local
161 int32 out; local
165 smlabb out, k6, k14, k1 local
176 int32 out; local
180 and out, op2, #0xFFFF local
181 mla out, op1, out, op3 local
215 int32 out; local
219 and out, k14, 0xFFFF local
220 mla out, k6, out, k1 local
228 int32 out; local
232 and out, k14, 0xFFFF local
233 mla out, k6, out, k1 local
271 register int32 out; local
287 register int32 out; local
303 register int32 out; local
319 register int32 out; local
334 register int32 out; local
    [all...]

Completed in 1111 milliseconds

<<41424344454647484950>>