/external/chromium_org/third_party/tlslite/tlslite/utils/ |
Cryptlib_RC4.py | 23 bytes = stringToBytes(plaintext) 24 cryptlib_py.cryptEncrypt(self.context, bytes) 25 return bytesToString(bytes)
|
entropy.c | 31 unsigned char* bytes = NULL; local 62 /* Allocate bytes */ 63 if ((bytes = (unsigned char*)PyMem_Malloc(howMany)) == NULL) 72 PyMem_Free(bytes); 77 if(!pCryptGenRandom(hCryptProv, howMany, bytes)) { 80 PyMem_Free(bytes); 86 returnVal = Py_BuildValue("s#", bytes, howMany); 87 PyMem_Free(bytes); 108 unsigned char* bytes = NULL; local 116 /* Allocate bytes */ [all...] |
/external/valgrind/main/VEX/orig_amd64/ |
SortedToOrig.hs | 16 bytes = head ws 18 bytes2 = foo bytes 23 ". " ++ show n ++ " 0x12345678 " ++ show (1 + (length bytes `div` 2)),
|
/external/webrtc/src/modules/audio_processing/ |
debug.proto | 14 optional bytes data = 1; 18 optional bytes input_data = 1; 19 optional bytes output_data = 2;
|
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/ |
byte_array.h | 27 // An abstraction to a contiguous array of bytes. 37 // Gets the maximum size of the array. This is the maximum number of bytes that 52 // Gets the bytes from the given index and fill the buffer with them. As many 53 // bytes as will fit into the buffer are read unless that would go past the 56 // @param b the buffer to put the bytes read into 57 // @return the number of bytes read from the buffer 60 // Gets the bytes from the given index and fill the buffer with them starting 61 // at the offset given. As many bytes as the specified length are read unless 64 // @param b the buffer to put the bytes read into 65 // @param offset the location in the buffer to start putting the bytes [all...] |
/external/sfntly/cpp/src/sfntly/data/ |
byte_array.h | 27 // An abstraction to a contiguous array of bytes. 37 // Gets the maximum size of the array. This is the maximum number of bytes that 52 // Gets the bytes from the given index and fill the buffer with them. As many 53 // bytes as will fit into the buffer are read unless that would go past the 56 // @param b the buffer to put the bytes read into 57 // @return the number of bytes read from the buffer 60 // Gets the bytes from the given index and fill the buffer with them starting 61 // at the offset given. As many bytes as the specified length are read unless 64 // @param b the buffer to put the bytes read into 65 // @param offset the location in the buffer to start putting the bytes [all...] |
/external/chromium_org/third_party/smhasher/src/ |
Types.h | 198 for(size_t i = 0; i < sizeof(bytes); i++) 200 bytes[i] = 0; 206 for(size_t i = 0; i < sizeof(bytes); i++) 208 bytes[i] = 0; 211 *(int*)bytes = x; 216 for(size_t i = 0; i < sizeof(bytes); i++) 218 bytes[i] = k.bytes[i]; 224 for(size_t i = 0; i < sizeof(bytes); i++) 226 bytes[i] = k.bytes[i] 368 uint8_t bytes[(_bits+7)\/8]; member in class:Blob [all...] |
/external/chromium_org/ppapi/cpp/dev/ |
crypto_dev.h | 20 /// A function that fills the buffer with random bytes. This may be slow, so 21 /// avoid getting more bytes than needed. 23 /// @param[out] buffer The buffer to receive the random bytes. 24 /// @param[in] num_bytes A number of random bytes to produce.
|
/external/clang/test/CodeGen/ |
2005-07-26-UnionInitCrash.c | 3 union { char bytes[8]; double alignment; }EQ1 = {0,0,0,0,0,0,0,0}; member in union:__anon16388
|
/external/iproute2/include/linux/ |
gen_stats.h | 18 * @bytes: number of seen bytes 22 __u64 bytes; member in struct:gnet_stats_basic 26 __u64 bytes; member in struct:gnet_stats_basic_packed
|
/external/valgrind/main/drd/tests/ |
tc16_byterace.stderr.exp | 4 Location 0x........ is 0 bytes inside bytes[4], 9 Location 0x........ is 0 bytes inside bytes[4],
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/ |
omxVCCOMM_Copy16x16_s.s | 8 ; * [in] step - distance between the starts of consecutive lines in the reference frame, in bytes; 49 ;// loading 16 bytes and storing 55 ;// loading 16 bytes and storing 61 ;// loading 16 bytes and storing 67 ;// loading 16 bytes and storing 73 ;// loading 16 bytes and storing 79 ;// loading 16 bytes and storing 85 ;// loading 16 bytes and storing 91 ;// loading 16 bytes and storing 97 ;// loading 16 bytes and storin [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
CharSequences.java | 26 * bytes. 28 * @param bytes ASCII bytes 30 public static CharSequence forAsciiBytes(final byte[] bytes) { 33 return (char) bytes[index]; 37 return bytes.length; 41 return forAsciiBytes(bytes, start, end); 45 return new String(bytes); 52 * bytes. 54 * @param bytes ASCII byte [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/ |
AudioSample.java | 23 public final byte[] bytes; field in class:AudioSample 25 public AudioSample(int sampleRate, int channelCount, byte[] bytes) { 28 this.bytes = bytes;
|
/art/test/NativeAllocations/ |
NativeAllocations.java | 28 private int bytes; field in class:NativeAllocations.NativeAllocation 30 NativeAllocation(int bytes) throws Exception { 31 this.bytes = bytes; 32 register_native_allocation.invoke(runtime, bytes); 34 nativeBytes += bytes; 43 nativeBytes -= bytes; 45 register_native_free.invoke(runtime, bytes);
|
/dalvik/tests/098-native-allocations/src/ |
Main.java | 28 private int bytes; field in class:Main.NativeAllocation 30 NativeAllocation(int bytes) throws Exception { 31 this.bytes = bytes; 32 register_native_allocation.invoke(runtime, bytes); 34 nativeBytes += bytes; 43 nativeBytes -= bytes; 45 register_native_free.invoke(runtime, bytes);
|
/external/chromium_org/chrome/browser/chromeos/attestation/ |
attestation_signed_data.proto | 14 optional bytes data = 1; 16 optional bytes signature = 2;
|
/external/chromium_org/crypto/ |
random.h | 14 // Fills the given buffer with |length| random bytes of cryptographically 17 CRYPTO_EXPORT void RandBytes(void *bytes, size_t length);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrMemory.cpp | 14 void* GrMalloc(size_t bytes) { 15 void* ptr = ::malloc(bytes);
|
/external/iptables/extensions/ |
libxt_connbytes.man | 1 Match by how many bytes or packets a connection (or one of the two 3 average bytes per packet. 10 The transferred bytes per connection can also be viewed through 20 match packets from a connection whose packets/bytes/average packet 21 size is more than FROM and less than TO bytes/packets. if TO is 29 whether to check the amount of packets, number of bytes transferred or 30 the average size (in bytes) of all packets received so far. Note that 36 iptables .. \-m connbytes \-\-connbytes 10000:100000 \-\-connbytes\-dir both \-\-connbytes\-mode bytes ...
|
/external/skia/src/gpu/ |
GrMemory.cpp | 14 void* GrMalloc(size_t bytes) { 15 void* ptr = ::malloc(bytes);
|
/external/valgrind/main/gdbserver_tests/ |
mcclean_after_fork.stderr.exp | 9 in use at exit: 0 bytes in 0 blocks 10 total heap usage: 0 allocs, 0 frees, 0 bytes allocated
|
mcmain_pic.stderr.exp | 7 in use at exit: 16 bytes in 1 blocks 8 total heap usage: 1 allocs, 0 frees, 16 bytes allocated
|
/external/valgrind/main/memcheck/tests/ |
accounting.stderr.exp | 5 in use at exit: 0 bytes in 0 blocks 6 total heap usage: 1 allocs, 1 frees, 1 bytes allocated
|
brk2.stderr.exp | 4 in use at exit: ... bytes in ... blocks 5 total heap usage: ... allocs, ... frees, ... bytes allocated
|