/libcore/luni/src/main/java/java/util/zip/ |
GZIPOutputStream.java | 77 out.write(Deflater.DEFLATED); 78 out.write(0); // flags 80 out.write(0); // extra flags 81 out.write(0); // operating system 85 * Indicates to the stream that all data has been written out, and any GZIP 109 // Write out the long value as an unsigned int 111 out.write(unsigned & 0xFF); 112 out.write((unsigned >> 8) & 0xFF); 113 out.write((unsigned >> 16) & 0xFF); 114 out.write((unsigned >> 24) & 0xFF) [all...] |
InflaterOutputStream.java | 41 * implementation-defined default internal buffer size. {@code out} is a destination 44 * @param out the destination {@code OutputStream} 46 public InflaterOutputStream(OutputStream out) { 47 this(out, new Inflater()); 52 * implementation-defined default internal buffer size. {@code out} is a destination 55 * @param out the destination {@code OutputStream} 58 public InflaterOutputStream(OutputStream out, Inflater inf) { 59 this(out, inf, DEFAULT_BUFFER_SIZE); 64 * given internal buffer size. {@code out} is a destination 67 * @param out the destination {@code OutputStream [all...] |
/packages/apps/Email/src/com/android/email/mail/internet/ |
EmailHtmlUtil.java | 39 StringBuilder out = new StringBuilder(); local 43 out.append(text.substring(end, start)); 49 out.append(" "); 51 out.append(' '); 53 out.append("<br>"); 55 out.append("<"); 57 out.append(">"); 59 out.append("&"); 62 out.append(text.substring(end)); 63 text = out.toString() [all...] |
/external/openssl/crypto/aes/ |
aes.h | 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 98 void AES_encrypt(const unsigned char *in, unsigned char *out, 100 void AES_decrypt(const unsigned char *in, unsigned char *out, 103 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out, 105 void AES_cbc_encrypt(const unsigned char *in, unsigned char *out, 108 void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, 111 void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, 114 void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, 117 void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, 120 void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, [all...] |
aes_cfb.c | 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 60 void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, 64 CRYPTO_cfb128_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt); 68 void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, 72 CRYPTO_cfb128_1_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt); 75 void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, 79 CRYPTO_cfb128_8_encrypt(in,out,length,key,ivec,num,enc,(block128_f)AES_encrypt);
|
/external/openssl/include/openssl/ |
aes.h | 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 98 void AES_encrypt(const unsigned char *in, unsigned char *out, 100 void AES_decrypt(const unsigned char *in, unsigned char *out, 103 void AES_ecb_encrypt(const unsigned char *in, unsigned char *out, 105 void AES_cbc_encrypt(const unsigned char *in, unsigned char *out, 108 void AES_cfb128_encrypt(const unsigned char *in, unsigned char *out, 111 void AES_cfb1_encrypt(const unsigned char *in, unsigned char *out, 114 void AES_cfb8_encrypt(const unsigned char *in, unsigned char *out, 117 void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, 120 void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, [all...] |
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebPreferencesPrivate.idl | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 44 HRESULT developerExtrasEnabled([out, retval] BOOL* enabled); 47 HRESULT automaticallyDetectsCacheModel([out, retval] BOOL* automaticallyDetectsCacheModel); 50 HRESULT authorAndUserStylesEnabled([out, retval] BOOL* enabled); 52 HRESULT inApplicationChromeMode([out, retval] BOOL *allowed); 56 HRESULT offlineWebApplicationCacheEnabled([out, retval] BOOL *enabled); 58 HRESULT localStorageDatabasePath([out, retval] BSTR* location); 62 HRESULT shouldPaintNativeControls([out, retval] BOOL* enabled); 65 HRESULT databasesEnabled([out, retval] BOOL *enabled); 68 HRESULT localStorageEnabled([out, retval] BOOL* enabled) [all...] |
IWebUndoManager.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 50 HRESULT canRedo([out, retval] BOOL* result); 55 HRESULT canUndo([out, retval] BOOL* result); 80 HRESULT groupingLevel([out, retval] int* groupingLevel); 85 HRESULT groupsByEvent([out, retval] BOOL* result); 90 HRESULT isRedoing([out, retval] BOOL* result); 95 HRESULT isUndoing([out, retval] BOOL* result); 100 HRESULT isUndoRegistrationEnabled([out, retval] BOOL* result); 105 HRESULT levelsOfUndo([out, retval] UINT* result); 110 HRESULT prepareWithInvocationTarget([in] IUnknown* target, [out, retval] IUnknown** result) [all...] |
IWebHTMLRepresentation.idl | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 49 HRESULT supportedMIMETypes([in, out] BSTR* types, [in, out] int* cTypes); 54 HRESULT supportedNonImageMIMETypes([in, out] BSTR* types, [in, out] int* cTypes); 59 HRESULT supportedImageMIMETypes([in, out] BSTR* types, [in, out] int* cTypes); 64 HRESULT attributedStringFromDOMNodes([in] IDOMNode* startNode, [in] int startOffset, [in] IDOMNode* endNode, [in] int endOffset, [out, retval] IDataObject** attributedString); 69 HRESULT elementWithName([in] BSTR name, [in] IDOMElement* form, [out, retval] IDOMElement** element); 74 HRESULT elementDoesAutoComplete([in] IDOMElement* element, [out, retval] BOOL* result) [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1StringType.java | 46 public void setEncodingContent(BerOutputStream out) { 47 byte[] bytes = ((String) out.content).getBytes(Charsets.UTF_8); 48 out.content = bytes; 49 out.length = bytes.length; 102 public void encodeASN(BerOutputStream out) { 103 out.encodeTag(id); 104 encodeContent(out); 107 public void encodeContent(BerOutputStream out) { 108 out.encodeString(); 111 public void setEncodingContent(BerOutputStream out) { [all...] |
/libcore/luni/src/main/java/java/io/ |
PipedReader.java | 40 * range {@code [out, in)} and written to the range {@code [in, out)}. 45 * out in</pre> 50 * in out</pre> 53 * {@code in == out}. Writing when the buffer is full will block until free 66 private int out; field in class:PipedReader 87 * {@code out}. Any data written to the writer can be read from the this 90 * @param out 93 * if {@code out} is already connected. 95 public PipedReader(PipedWriter out) throws IOException [all...] |
/external/icu4c/samples/uresb/ |
uresb.c | 18 * This program prints out resource bundles - example for 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status); 60 void printIndent(UFILE *out, int32_t indent); 61 void printHex(UFILE *out, const int8_t *what); 80 UFILE *out = NULL; local 146 out = u_finit(stdout, locale, encoding); 152 u_fprintf(out, "uresb: processing file \"%s\" in path \"%s\"\n", arg, resPath); 155 u_fprintf(out, "%s\n", arg); 156 printOutBundle(out, bundle, 0, &status); 166 u_fclose(out); [all...] |
/external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/ |
UTF16CharsetDecoderTest.java | 73 CharBuffer out = CharBuffer.allocate(10); local 75 ByteBuffer.wrap(new byte[] { -1, -2, 32, 0, 98 }), out, local 78 decoder.flush(out); 80 out.clear(); 82 .wrap(new byte[] { -1, -2, 32, 0 }), out, false)); 83 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 98 }), out, local 86 decoder.flush(out); 88 out.clear(); 90 .wrap(new byte[] { -1, -2, 32, 0, 98 }), out, false)); 91 assertFalse(decoder.decode(ByteBuffer.wrap(new byte[] {}), out, local 98 ByteBuffer.wrap(new byte[] { -1, -2, 32, 0, 98, 0 }), out, local 106 assertTrue(decoder.decode(ByteBuffer.wrap(new byte[] { 0 }), out, local [all...] |
/frameworks/av/media/libstagefright/foundation/ |
base64.cpp | 43 uint8_t *out = buffer->data(); local 72 out[j++] = (accum >> 16); 74 if (j < outLen) { out[j++] = (accum >> 8) & 0xff; } 75 if (j < outLen) { out[j++] = accum & 0xff; } 99 const void *_data, size_t size, AString *out) { 100 out->clear(); 110 out->append(encode6Bit(x1 >> 2)); 111 out->append(encode6Bit((x1 << 4 | x2 >> 4) & 0x3f)); 112 out->append(encode6Bit((x2 << 2 | x3 >> 6) & 0x3f)); 113 out->append(encode6Bit(x3 & 0x3f)) [all...] |
/libcore/luni/src/test/java/libcore/java/nio/charset/ |
OldCharsetEncoderDecoderBufferTest.java | 34 * is done first with an out-buffer with hasArray()==true, and next with an out-buffer with 35 * hasArray()==false. In that situation ICU may overwrite the first out-buffer. 41 CharBuffer out = CharBuffer.wrap(cBuf); local 42 assertTrue(out.hasArray()); 44 out, false); local 51 out = ByteBuffer.wrap(bBuf).asCharBuffer(); 52 assertFalse(out.hasArray()); 53 decoder.decode(ByteBuffer.wrap(new byte[]{(byte)'x'}), out, true); local 71 CharBuffer out = CharBuffer.wrap(new char[10]) local 99 ByteBuffer out = ByteBuffer.wrap(buffer); local 129 ByteBuffer out = ByteBuffer.wrap(new byte[10]); local [all...] |
/external/openssl/crypto/asn1/ |
tasn_prn.c | 49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 159 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 164 int asn1_template_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 167 static int asn1_primitive_print(BIO *out, ASN1_VALUE **fld, 172 static int asn1_print_fsname(BIO *out, int indent, 176 int ASN1_item_print(BIO *out, ASN1_VALUE *ifld, int indent, 186 return asn1_item_print_ctx(out, &ifld, indent, it, 190 static int asn1_item_print_ctx(BIO *out, ASN1_VALUE **fld, int indent, 204 parg.out = out; [all...] |
/dalvik/tests/043-privates/src/ |
Main.java | 12 System.out.println("PrivatePackage --> " + inst1.getStr()); 13 System.out.println("PrivatePackage --> " + inst2.getStr()); 14 System.out.println("PrivatePackage --> " + inst3.getStr()); 15 System.out.println("PrivatePackageSub --> " + inst3.getStrSub()); 32 System.out.println("PrivatePackage --> " + inst.getStr()); 33 System.out.println("PrivatePackage --> " + inst.privGetStr());
|
/dalvik/tests/063-process-manager/src/ |
Main.java | 7 System.out.println("\nspawning child #" + i); 12 System.out.println("\ndone!"); 16 System.out.println("spawning child"); 22 System.out.println("child died"); 34 System.out.println("process manager: " + t.getState()); 40 System.out.println("process manager: nonexistent");
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/ |
ListStack`1.cs | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 48 if (!TryPeek(depth, out item)) 54 public bool TryPeek(out T item) 56 return TryPeek(0, out item); 59 public bool TryPeek(int depth, out T item) 74 if (!TryPop(out result)) 80 public bool TryPop(out T item)
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Streams.java | 37 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 40 out.write(buffer, 0, count); 42 return out.toByteArray(); 50 StringWriter out = new StringWriter(); local 53 out.write(buffer, 0, count); 55 return out.toString();
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
BERSequence.java | 58 ASN1OutputStream out) 61 out.write(BERTags.SEQUENCE | BERTags.CONSTRUCTED); 62 out.write(0x80); 67 out.writeObject((ASN1Encodable)e.nextElement()); 70 out.write(0x00); 71 out.write(0x00);
|
BERSet.java | 58 ASN1OutputStream out) 61 out.write(BERTags.SET | BERTags.CONSTRUCTED); 62 out.write(0x80); 67 out.writeObject((ASN1Encodable)e.nextElement()); 70 out.write(0x00); 71 out.write(0x00);
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/short_integer/ |
der_encode_short_integer.c | 24 @param out [out] The destination for the DER encoded integers 25 @param outlen [in/out] The max size and resulting size of the DER encoded integers 28 int der_encode_short_integer(unsigned long num, unsigned char *out, unsigned long *outlen) 33 LTC_ARGCHK(out != NULL); 39 /* find out how big this will be */ 72 out[x++] = 0x02; 73 out[x++] = (unsigned char)z; 77 out[x++] = 0; 83 out[x++] = (unsigned char)((num >> 24) & 0xFF) [all...] |
/external/jmonkeyengine/engine/src/bullet-native/ |
jmeBulletUtil.h | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 42 static void convert(JNIEnv* env, jobject in, btVector3* out); 43 static void convert(JNIEnv* env, const btVector3* in, jobject out); 44 static void convert(JNIEnv* env, jobject in, btMatrix3x3* out); 45 static void convert(JNIEnv* env, const btMatrix3x3* in, jobject out); 46 static void convertQuat(JNIEnv* env, jobject in, btMatrix3x3* out); 47 static void convertQuat(JNIEnv* env, const btMatrix3x3* in, jobject out);
|
/external/jmonkeyengine/engine/src/test/jme3test/bounding/ |
TestRayCollision.java | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 52 System.out.println("Bounding:" +bbox); 53 System.out.println("Ray: "+r); 55 System.out.println("Num collisions: "+res.size()); 57 System.out.println("--- Collision #"+i+" ---"); 60 System.out.println("distance: "+dist); 61 System.out.println("point: "+pt);
|