/external/bluetooth/bluedroid/stack/smp/ |
aes.h | 91 unsigned char out[N_BLOCK], 95 unsigned char *out, 104 unsigned char out[N_BLOCK], 108 unsigned char *out, 121 out[]. In addition, the second key array, o_key[L], is used 136 unsigned char out[N_BLOCK], 143 unsigned char out[N_BLOCK], 150 unsigned char out[N_BLOCK], 157 unsigned char out[N_BLOCK],
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
DERNull.java | 35 ASN1OutputStream out) 38 out.writeEncoded(BERTags.NULL, zeroBytes);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
EncodedArrayItem.java | 95 ByteArrayAnnotatedOutput out = new ByteArrayAnnotatedOutput(); local 96 ValueEncoder encoder = new ValueEncoder(addedTo.getFile(), out); 99 encodedForm = out.toByteArray(); 105 protected void writeTo0(DexFile file, AnnotatedOutput out) { 106 boolean annotates = out.annotates(); 109 out.annotate(0, offsetString() + " encoded array"); 116 ValueEncoder encoder = new ValueEncoder(file, out); 119 out.write(encodedForm);
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_pkcs.h | 23 int pkcs_1_i2osp(void *n, unsigned long modulus_len, unsigned char *out); 33 unsigned char *out, 40 unsigned char *out, 49 unsigned char *out, unsigned long *outlen); 54 unsigned char *out, unsigned long *outlen, 61 unsigned char *out, unsigned long *outlen); 77 unsigned char *out, unsigned long *outlen); 83 unsigned char *out, unsigned long *outlen);
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/utctime/ |
der_encode_utctime.c | 23 out[x++] = der_ia5_char_encode(baseten[(y/10) % 10]); \ 24 out[x++] = der_ia5_char_encode(baseten[y % 10]); 29 @param out The destination of the DER encoding of the UTC time structure 30 @param outlen [in/out] The length of the DER encoding 34 unsigned char *out, unsigned long *outlen) 40 LTC_ARGCHK(out != NULL); 52 out[0] = 0x17; 64 out[x++] = der_ia5_char_encode(utctime->off_dir ? '-' : '+'); 68 out[x++] = der_ia5_char_encode('Z'); 72 out[1] = (unsigned char)(x - 2) [all...] |
/external/e2fsprogs/lib/uuid/ |
uuidd.h | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE 51 extern void uuid__generate_time(uuid_t out, int *num); 52 extern void uuid__generate_random(uuid_t out, int *num);
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
TextContent.java | 25 public void emit (final HTMLWriter out) 29 out.write (m_text);
|
/external/emma/core/java12/com/vladium/jcd/compiler/ |
ClassWriter.java | 27 public static void writeClassTable (final ClassDef classTable, final OutputStream out) 30 classTable.writeInClassFormat (new UDataOutputStream (out));
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/ |
Digest.java | 25 public void digest(byte[] out); 27 public void digest(byte[] out, int off);
|
/external/guava/guava-tests/test/com/google/common/io/ |
CountingOutputStreamTest.java | 30 ByteArrayOutputStream out = new ByteArrayOutputStream(); local 31 CountingOutputStream counter = new CountingOutputStream(out); 32 assertEquals(written, out.size()); 37 assertEquals(written, out.size()); 43 assertEquals(written, out.size()); 48 assertEquals(written, out.size()); 53 assertEquals(written, out.size()); 62 assertEquals(written, out.size());
|
/external/jmonkeyengine/engine/src/test/jme3test/asset/ |
TestManyLocators.java | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 70 System.out.println("Failed to load from classpath"); 72 System.out.println("Found classpath font: " + a.toString()); 75 System.out.println("Failed to load from town.zip"); 77 System.out.println("Found zip image: " + b.toString()); 80 System.out.println("Failed to load from wildhouse.zip on googlecode.com"); 82 System.out.println("Found online zip image: " + c.toString()); 85 System.out.println("Failed to load from HTTP"); 87 System.out.println("Found HTTP showcase image: " + d.toString());
|
/external/jmonkeyengine/engine/src/test/jme3test/water/ |
WaterUI.java | 29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 51 System.out.println("----------------- SSAO UI Debugger --------------------"); 52 System.out.println("-- Water transparency : press Y to increase, H to decrease"); 53 System.out.println("-- Water depth : press U to increase, J to decrease"); 54 // System.out.println("-- AO scale : press I to increase, K to decrease"); 55 // System.out.println("-- AO bias : press O to increase, P to decrease"); 56 // System.out.println("-- Toggle AO on/off : press space bar"); 57 // System.out.println("-- Use only AO : press Num pad 0"); 58 // System.out.println("-- Output config declaration : press P"); 59 System.out.println("-------------------------------------------------------") [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
NullEscapeFunction.java | 31 public void filter(String in, Appendable out) throws IOException { 32 out.append(in);
|
/external/llvm/lib/Support/ |
Makefile | 18 CompileCommonOpts := $(filter-out -pedantic,$(CompileCommonOpts)) 19 CompileCommonOpts := $(filter-out -Wno-long-long,$(CompileCommonOpts))
|
/external/llvm/test/MC/ARM/ |
full_line_comment.s | 8 # .long 1 this line is commented out
|
/external/openssl/crypto/aes/ |
aes_ctr.c | 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 55 void AES_ctr128_encrypt(const unsigned char *in, unsigned char *out, 60 CRYPTO_ctr128_encrypt(in,out,length,key,ivec,ecount_buf,num,(block128_f)AES_encrypt);
|
aes_ofb.c | 46 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 55 void AES_ofb128_encrypt(const unsigned char *in, unsigned char *out, 59 CRYPTO_ofb128_encrypt(in,out,length,key,ivec,num,(block128_f)AES_encrypt);
|
/external/openssl/crypto/modes/ |
ofb128.c | 45 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 66 void CRYPTO_ofb128_encrypt(const unsigned char *in, unsigned char *out, 74 assert(in && out && key && ivec && num); 81 *(out++) = *(in++) ^ ivec[n]; 86 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0) 92 *(size_t*)(out+n) = 95 out += 16; 102 out[n] = in[n] ^ ivec[n]; 115 out[l] = in[l] ^ ivec[n];
|
/external/tcpdump/tests/ |
bgp_vpn_attrset.sh | 4 if (../tcpdump -t -n -v -r bgp_vpn_attrset.pcap | diff -w - bgp_vpn_attrset.out)
|
/frameworks/av/media/libeffects/testlibs/ |
AudioBiquadFilter.h | 76 // out The output buffer. Should be of size frameCount * nChannels. 78 void process(const audio_sample_t in[], audio_sample_t out[], 157 void process_bypass(const audio_sample_t * in, audio_sample_t * out, 160 void process_normal_mono(const audio_sample_t * in, audio_sample_t * out, 164 audio_sample_t * out, int frameCount); 167 audio_sample_t * out, int frameCount); 169 void process_normal_multi(const audio_sample_t * in, audio_sample_t * out, 173 audio_sample_t * out, int frameCount); 176 audio_sample_t * out, int frameCount);
|
/frameworks/base/core/java/android/database/ |
BulkCursorDescriptor.java | 56 public void writeToParcel(Parcel out, int flags) { 57 out.writeStrongBinder(cursor.asBinder()); 58 out.writeStringArray(columnNames); 59 out.writeInt(wantsAllOnMoveCalls ? 1 : 0); 60 out.writeInt(count); 62 out.writeInt(1); 63 window.writeToParcel(out, flags); 65 out.writeInt(0);
|
/hardware/samsung_slsi/exynos5/mobicore/daemon/Daemon/Device/ |
NotificationQueue.h | 30 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 51 * @param out beginning of queue header 56 notificationQueue_t *out, 80 notificationQueue_t *out; member in class:NotificationQueue
|
/libcore/luni/src/main/java/java/io/ |
BufferedOutputStream.java | 50 * Constructs a new {@code BufferedOutputStream}, providing {@code out} with a buffer 53 * @param out the {@code OutputStream} the buffer writes to. 55 public BufferedOutputStream(OutputStream out) { 56 this(out, 8192); 60 * Constructs a new {@code BufferedOutputStream}, providing {@code out} with {@code size} bytes 63 * @param out the {@code OutputStream} the buffer writes to. 67 public BufferedOutputStream(OutputStream out, int size) { 68 super(out); 76 * Flushes this stream to ensure all pending data is written out to the 86 out.flush() [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/ |
ASN1Implicit.java | 124 public void encodeASN(BerOutputStream out) { 127 out.encodeTag(constrId); 129 out.encodeTag(id); 131 encodeContent(out); 134 public void encodeContent(BerOutputStream out) { 135 type.encodeContent(out); 138 public void setEncodingContent(BerOutputStream out) { 139 type.setEncodingContent(out);
|
/libcore/support/src/test/java/tests/util/ |
FieldTestFileGenerator.java | 36 * {@code tests.support.Support_GetPutFieldsDefaulted} must be commented out. See the 55 System.out.println("Trying to write the test file 'testFields.ser'..."); 63 System.out.println("Exception occured while writing the file: " + e); 70 System.out.println("Trying to write the test file 'testFieldsDeprecated.ser'..."); 78 System.out.println("Exception occured while writing the file: " + e); 85 System.out.println("Trying to write the test file 'testFieldsDefaulted.ser'..."); 93 System.out.println("Exception occured while writing the file: " + e); 101 System.out.println("Success!"); 103 System.out.println("Failure!");
|