HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 151 - 175 of 5986) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/wpa_supplicant_8/src/crypto/
aes-encblock.c 20 * @out: Output of the AES block operation (16 bytes)
23 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out)
29 aes_encrypt(ctx, in, out);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
Wap230WspContentTypeTest.java 257 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
258 out.write(0x00);
259 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
266 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
267 out.write(testType.getBytes("US-ASCII"));
268 out.write(WSP_STRING_TERMINATOR);
270 WspTypeDecoder unit = new WspTypeDecoder(out.toByteArray());
281 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
282 out.write(testType.length() + 1);
283 out.write(testType.getBytes("US-ASCII"))
297 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
313 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
329 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
348 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
368 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
386 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
403 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
424 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
446 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
470 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
493 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
510 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
533 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
557 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
582 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
606 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
627 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
648 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
673 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
694 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
717 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
738 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
759 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
782 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
793 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
815 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
839 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
863 ByteArrayOutputStream out = new ByteArrayOutputStream(); local
    [all...]
  /frameworks/rs/cpp/
ScriptIntrinsics.cpp 36 void ScriptIntrinsicBlend::blendClear(sp<Allocation> in, sp<Allocation> out) {
37 Script::forEach(0, in, out, NULL, 0);
40 void ScriptIntrinsicBlend::blendSrc(sp<Allocation> in, sp<Allocation> out) {
41 Script::forEach(1, in, out, NULL, 0);
44 void ScriptIntrinsicBlend::blendDst(sp<Allocation> in, sp<Allocation> out) {
45 Script::forEach(2, in, out, NULL, 0);
48 void ScriptIntrinsicBlend::blendSrcOver(sp<Allocation> in, sp<Allocation> out) {
49 Script::forEach(3, in, out, NULL, 0);
52 void ScriptIntrinsicBlend::blendDstOver(sp<Allocation> in, sp<Allocation> out) {
53 Script::forEach(4, in, out, NULL, 0)
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
exposure.rs 26 void exposure(const uchar4 *in, uchar4 *out)
28 out->r = rsClamp((int)(bright * in->r), 0, 255);
29 out->g = rsClamp((int)(bright * in->g), 0, 255);
30 out->b = rsClamp((int)(bright * in->b), 0, 255);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
exposure.rs 25 void exposure(const uchar4 *in, uchar4 *out)
27 out->r = rsClamp((int)(bright * in->r), 0, 255);
28 out->g = rsClamp((int)(bright * in->g), 0, 255);
29 out->b = rsClamp((int)(bright * in->b), 0, 255);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
exposure.rs 25 void exposure(const uchar4 *in, uchar4 *out)
27 out->r = rsClamp((int)(bright * in->r), 0, 255);
28 out->g = rsClamp((int)(bright * in->g), 0, 255);
29 out->b = rsClamp((int)(bright * in->b), 0, 255);
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.cons/
cp_size_mode.pass.cpp 14 // ostrstream(char* s, int n, ios_base::openmode mode = ios_base::out);
23 std::ostrstream out(buf, 0);
24 assert(out.str() == std::string("123 4.5 dog"));
28 out << i << ' ' << d << ' ' << s << std::ends;
29 assert(out.str() == std::string("321 5.5 cat"));
33 std::ostrstream out(buf, 11, std::ios::app);
34 assert(out.str() == std::string("123 4.5 dog"));
38 out << i << ' ' << d << ' ' << s << std::ends;
39 assert(out.str() == std::string("123 4.5 dog321 5.5 cat"));
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
rdbuf.pass.cpp 23 const std::ostrstream out(buf, 0);
24 std::strstreambuf* sb = out.rdbuf();
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.dest/
rdbuf.pass.cpp 23 const std::strstream out(buf, 0);
24 std::strstreambuf* sb = out.rdbuf();
  /system/core/fastboot/
p12topem.sh 9 openssl pkcs12 -passin pass:"$2" -passout pass:"$2" -in $1.p12 -out $1.pem
  /cts/tests/tests/os/src/android/os/cts/
ParcelFileDescriptor_AutoCloseOutputStreamTest.java 28 AutoCloseOutputStream out = new AutoCloseOutputStream(pf); local
30 out.write(2);
32 out.close();
35 out.write(2);
  /dalvik/dx/tests/119-merge-conflict/testdata/
B.java 5 System.out.println(new A().hello());
  /dalvik/tests/022-interface/src/
Main.java 29 System.out.print("ImplBSub intf: ");
30 System.out.println(result);
34 System.out.print("ImplA: ");
35 System.out.println(result);
  /dalvik/tests/024-illegal-access/src/
Main.java 24 System.out.println("Got expected failure 1");
27 System.out.println("Got expected failure 1");
35 System.out.println("Got expected failure 2");
38 System.out.println("Got expected failure 2");
PublicAccess.java 9 System.out.println("Got " + shouldFail);
  /dalvik/tests/030-bad-finalizer/src/
BadFinalizer.java 11 System.out.println("Snooze: " + ie.getMessage());
16 System.out.println("Finalizer started and spinning...");
25 System.out.println("Finalizer done spinning.");
27 System.out.println("Finalizer sleeping forever now.");
  /external/android-clat/
ipv4.h 23 int ipv4_packet(clat_packet out, int pos, const char *packet, size_t len);
ipv6.h 23 int ipv6_packet(clat_packet out, int pos, const char *packet, size_t len);
  /external/dropbear/libtomcrypt/src/pk/asn1/der/integer/
der_encode_integer.c 25 @param out [out] The destination for the DER encoded integers
26 @param outlen [in/out] The max size and resulting size of the DER encoded integers
29 int der_encode_integer(void *num, unsigned char *out, unsigned long *outlen)
35 LTC_ARGCHK(out != NULL);
38 /* find out how big this will be */
67 *out++ = 0x02;
70 *out++ = (unsigned char)y;
72 *out++ = 0x81;
73 *out++ = (unsigned char)y
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
IContent.java 20 void emit (final HTMLWriter out);
  /external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
CssUrlValidateFunction.java 43 protected void applyEscaping(String in, Appendable out) throws IOException {
48 out.append("%0A");
51 out.append("%0D");
54 out.append("%22");
57 out.append("%27");
60 out.append("%28");
63 out.append("%29");
66 out.append("%2A");
69 out.append("%3C");
72 out.append("%3E")
    [all...]
  /external/llvm/projects/
Makefile 15 DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
18 DIRS := $(filter-out compiler-rt,$(DIRS))
21 DIRS := $(filter-out libcxx,$(DIRS))
25 DIRS := $(filter-out sample, $(DIRS))
  /external/openssl/crypto/aes/
aes_ecb.c 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
62 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out,
65 assert(in && out && key);
69 AES_encrypt(in, out, key);
71 AES_decrypt(in, out, key);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
DebugInfoBuilder.java 25 * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
153 ByteArrayOutput out = new ByteArrayOutput(); local
164 event.emit(dexFile, out, referencedItems);
166 emitEndSequence(out);
179 return DebugInfoItem.internDebugInfoItem(dexFile, lineStart, parameterNamesArray, out.toByteArray(),
190 void emit(DexFile dexFile, Output out, List<Item> referencedItems);
193 private void emitEndSequence(Output out) {
194 out.writeByte(0);
197 private void emitAdvancePC(Output out, int address) {
201 out.writeByte(1)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1Sequence.java 48 public final void encodeContent(BerOutputStream out) {
49 out.encodeSequence(this);
52 public final void setEncodingContent(BerOutputStream out) {
53 out.getSequenceLength(this);

Completed in 898 milliseconds

1 2 3 4 5 67 8 91011>>