HomeSort by relevance Sort by last modified time
    Searched full:byte (Results 1226 - 1250 of 24897) sorted by null

<<41424344454647484950>>

  /external/apache-harmony/crypto/src/test/support/common/java/org/apache/harmony/crypto/tests/support/
MyExemptionMechanismSpi.java 48 protected byte[] engineGenExemptionBlob()
50 return new byte[byteArrayLength];
54 protected int engineGenExemptionBlob(byte[] output, int outputOffset)
102 private byte[] enc;
104 public tmpKey(String alg, byte[] enc) {
117 public byte[] getEncoded() {
124 private byte[] enc;
126 public tmp1Key(String alg, byte[] enc) {
138 public byte[] getEncoded() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
GeneralDigest.java 16 private final byte[] xBuf = new byte[4];
39 protected GeneralDigest(byte[] encodedState)
55 byte in)
69 byte[] in,
120 update((byte)128);
124 update((byte)0);
143 protected void populateState(byte[] state)
155 protected abstract void processWord(byte[] in, int inOff);
  /external/clang/test/Sema/
inline-asm-validate-aarch64.c 6 uint8_t byte; local
8 __asm__ volatile("ldrb %0, [%1]" : "=r" (byte) : "r" (addr) : "memory");
13 return byte;
17 uint8_t byte; local
19 __asm__ volatile("ldrb %[s0], [%[s1]]" : [s0] "=r" (byte) : [s1] "r" (addr) : "memory");
24 return byte;
30 uint8_t byte; local
32 __asm__ volatile("ldrb "PERCENT"[s0], [%[s1]]" : [s0] "=r" (byte) : [s1] "r" (addr) : "memory");
37 return byte;
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/
TargetLoader.java 21 * Loads a single class from a byte array.
25 private final Map<String, byte[]> classes;
29 this.classes = new HashMap<String, byte[]>();
32 public Class<?> add(final String name, final byte[] bytes) {
37 public Class<?> add(final Class<?> name, final byte[] bytes) {
60 public static byte[] getClassDataAsBytes(Class<?> clazz) throws IOException {
63 byte[] buffer = new byte[0x100];
75 final byte[] bytes = classes.get(name);
  /external/jetty/src/java/org/eclipse/jetty/http/
HttpTokens.java 27 static final byte COLON= (byte)':';
28 static final byte SPACE= 0x20;
29 static final byte CARRIAGE_RETURN= 0x0D;
30 static final byte LINE_FEED= 0x0A;
31 static final byte[] CRLF = {CARRIAGE_RETURN,LINE_FEED};
32 static final byte SEMI_COLON= (byte)';';
33 static final byte TAB= 0x09;
  /external/jetty/src/java/org/eclipse/jetty/websocket/
FixedMaskGen.java 25 private final byte[] _mask;
29 this(new byte[]{(byte)0xff,(byte)0xff,(byte)0xff,(byte)0xff});
32 public FixedMaskGen(byte[] mask)
34 _mask=new byte[4];
40 public void genMask(byte[] mask)
  /external/lzma/CPP/7zip/Compress/
DeltaFilter.cpp 14 Byte _state[DELTA_STATE_SIZE];
29 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
43 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
44 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
53 STDMETHODIMP_(UInt32) CDeltaEncoder::Filter(Byte *data, UInt32 size)
88 Byte prop = (Byte)(_delta - 1);
98 STDMETHODIMP_(UInt32) CDeltaDecoder::Filter(Byte *data, UInt32 size)
104 STDMETHODIMP CDeltaDecoder::SetDecoderProperties2(const Byte *props, UInt32 size)
  /external/lzma/CPP/7zip/Crypto/
MyAes.cpp 29 STDMETHODIMP_(UInt32) CAesCbcCoder::Filter(Byte *data, UInt32 size)
42 STDMETHODIMP CAesCbcCoder::SetKey(const Byte *data, UInt32 size)
54 STDMETHODIMP CAesCbcCoder::SetInitVector(const Byte *data, UInt32 size)
65 void MY_FAST_CALL AesCbc_Encode(UInt32 *ivAes, Byte *data, size_t numBlocks);
66 void MY_FAST_CALL AesCbc_Decode(UInt32 *ivAes, Byte *data, size_t numBlocks);
67 void MY_FAST_CALL AesCtr_Code(UInt32 *ivAes, Byte *data, size_t numBlocks);
69 void MY_FAST_CALL AesCbc_Encode_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
70 void MY_FAST_CALL AesCbc_Decode_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
71 void MY_FAST_CALL AesCtr_Code_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
  /external/valgrind/memcheck/tests/solaris/
scalar_lwp_name.stderr.exp 4 Syscall param lwp_name(opcode) contains uninitialised byte(s)
7 Syscall param lwp_name(lwpid) contains uninitialised byte(s)
10 Syscall param lwp_name(name) contains uninitialised byte(s)
13 Syscall param lwp_name(name) points to unaddressable byte(s)
20 Syscall param lwp_name(opcode) contains uninitialised byte(s)
23 Syscall param lwp_name(lwpid) contains uninitialised byte(s)
26 Syscall param lwp_name(name) contains uninitialised byte(s)
29 Syscall param lwp_name(len) contains uninitialised byte(s)
32 Syscall param lwp_name(name) points to unaddressable byte(s)
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/include/
viddec_parser_ops.h 46 /* This function returns the requested number of bits(<=32) and increments au byte position.
50 /* This function returns requested number of bits(<=32) with out incrementing au byte position
54 /* This function skips requested number of bits(<=32) by incrementing au byte position.
66 /* This function gets current byte and bit positions and information on whether an emulation byte is present after
67 current byte.
69 int32_t viddec_pm_get_au_pos(void *parent, uint32_t *bit, uint32_t *byte, unsigned char *is_emul);
87 /* Returns the current byte value where offset is on */
88 uint32_t viddec_pm_get_cur_byte(void *parent, uint8_t *byte);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidGZIPStreamTest.java 36 byte[] zipData;
48 zipData = new byte[inputLength];
63 static byte[] makeSampleFile(int stepStep) throws IOException {
64 byte[] sample = new byte[128 * 1024];
65 byte val, step;
86 byte[] input = makeSampleFile(1);
98 byte[] buf = new byte[4096];
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
CipherInputStream1Test.java 46 public TestInputStream(byte[] data) {
65 byte[] data = new byte[] { -127, -100, -50, -10, -1, 0, 1, 10, 50, 127 };
70 if ((byte) cis.read() != data[i]) {
85 byte[] data = new byte[] { -127, -100, -50, -10, -1, 0, 1, 10, 50, 127 };
88 byte res;
90 if ((res = (byte) cis.read()) != data[i]) {
101 * read(byte[] b) method testing. Tests that method returns the correct
106 byte[] data = new byte[] { -127, -100, -50, -10, -1, 0, 1, 10, 50, 127 }
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherSymmetricKeyThread.java 35 byte[] output = new byte[128];
36 byte[] decrypted = new byte[128];
37 byte[] input = getData().getBytes();
39 byte[] iv = null;//new byte[16];
49 iv = new byte[8];
51 iv = new byte[16];
  /libcore/ojluni/src/main/java/sun/net/util/
IPAddressUtil.java 38 * @return a byte array representing the IPv4 numeric address
40 public static byte[] textToNumericFormatV4(String src)
46 byte[] res = new byte[INADDR4SZ];
54 // the network address without any byte rearrangement.
59 res[0] = (byte) ((val >> 24) & 0xff);
60 res[1] = (byte) (((val & 0xffffff) >> 16) & 0xff);
61 res[2] = (byte) (((val & 0xffff) >> 8) & 0xff);
62 res[3] = (byte) (val & 0xff);
74 res[0] = (byte) (val & 0xff)
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
ByteArrayLexOrder.java 32 * Compare two byte arrays in lexicographical order.
36 public class ByteArrayLexOrder implements Comparator<byte[]> {
39 * Perform lexicographical comparison of two byte arrays,
40 * regarding each byte as unsigned. That is, compare array entries
45 * @param bytes1 first byte array to compare.
46 * @param bytes2 second byte array to compare.
51 * if either argument is not a byte array.
53 public final int compare( byte[] bytes1, byte[] bytes2) {
  /libcore/support/src/test/java/tests/support/
Support_OutputStream.java 8 * byte array of fixed size. As a special feature, instances of this class can
17 private byte[] buffer;
35 buffer = new byte[bufferSize];
58 public void write(byte buffer[]) throws IOException {
68 public void write(byte buffer[], int offset, int count) throws IOException {
86 buffer[position] = (byte)(oneByte & 255);
93 public byte[] toByteArray() {
94 byte[] toReturn = new byte[position];
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AdvtFilterOnFoundOnLostInfo.java 26 private byte[] mAdvPkt;
31 private byte[] mScanRsp;
43 public AdvtFilterOnFoundOnLostInfo(int client_if, int adv_pkt_len, byte[] adv_pkt,
44 int scan_rsp_len, byte[] scan_rsp, int filt_index, int adv_state,
99 public byte[] getAdvPacketData() {
107 public byte[] getScanRspData() {
115 public byte [] getResult() {
117 byte result[] = new byte[resultLength];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
avifmt.h 16 #define mmioFOURCC(ch0,ch1,ch2,ch3) ((DWORD)(BYTE)(ch0) | ((DWORD)(BYTE)(ch1) << 8) | ((DWORD)(BYTE)(ch2) << 16) | ((DWORD)(BYTE)(ch3) << 24))
20 #define aviTWOCC(ch0,ch1) ((WORD)(BYTE)(ch0) | ((WORD)(BYTE)(ch1) << 8))
57 #define ToHex(n) ((BYTE) (((n) > 9) ? ((n) - 10 + 'A') : ((n) + '0')))
119 BYTE bFirstEntry;
120 BYTE bNumEntries;
  /prebuilts/go/darwin-x86/src/crypto/aes/
block.go 40 func encryptBlockGo(xk []uint32, dst, src []byte) {
78 dst[0], dst[1], dst[2], dst[3] = byte(s0>>24), byte(s0>>16), byte(s0>>8), byte(s0)
79 dst[4], dst[5], dst[6], dst[7] = byte(s1>>24), byte(s1>>16), byte(s1>>8), byte(s1)
80 dst[8], dst[9], dst[10], dst[11] = byte(s2>>24), byte(s2>>16), byte(s2>>8), byte(s2
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/cipher/
cipher.go 21 Encrypt(dst, src []byte)
25 Decrypt(dst, src []byte)
30 // XORKeyStream XORs each byte in the given slice with a byte from the
35 XORKeyStream(dst, src []byte)
47 CryptBlocks(dst, src []byte)
52 func dup(p []byte) []byte {
53 q := make([]byte, len(p))
  /prebuilts/go/linux-x86/src/crypto/aes/
block.go 40 func encryptBlockGo(xk []uint32, dst, src []byte) {
78 dst[0], dst[1], dst[2], dst[3] = byte(s0>>24), byte(s0>>16), byte(s0>>8), byte(s0)
79 dst[4], dst[5], dst[6], dst[7] = byte(s1>>24), byte(s1>>16), byte(s1>>8), byte(s1)
80 dst[8], dst[9], dst[10], dst[11] = byte(s2>>24), byte(s2>>16), byte(s2>>8), byte(s2
    [all...]
  /prebuilts/go/linux-x86/src/crypto/cipher/
cipher.go 21 Encrypt(dst, src []byte)
25 Decrypt(dst, src []byte)
30 // XORKeyStream XORs each byte in the given slice with a byte from the
35 XORKeyStream(dst, src []byte)
47 CryptBlocks(dst, src []byte)
52 func dup(p []byte) []byte {
53 q := make([]byte, len(p))
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
reloc-bad-3.l 18 [^:]*:46: Error: immediate offset not 2-byte-aligned
21 [^:]*:50: Error: immediate offset not 2-byte-aligned
24 [^:]*:54: Error: immediate offset not 4-byte-aligned
29 [^:]*:61: Error: immediate offset not 2-byte-aligned
32 [^:]*:65: Error: immediate offset not 4-byte-aligned
33 [^:]*:9: Error: value too large for 2-byte field
34 [^:]*:11: Error: value too large for 2-byte field
35 [^:]*:13: Error: value too large for 1-byte field
36 [^:]*:15: Error: value too large for 1-byte field
  /art/test/605-new-string-from-bytes/src/
Main.java 24 Method m = c.getDeclaredMethod("newStringFromBytes", byte[].class, int.class);
30 byte[] f = new byte[100000000];
31 f[0] = (byte)i;
32 f[1] = (byte)i;
  /art/tools/dexfuzz/src/dexfuzz/rawdex/formats/
Format10t.java 27 file.writeByte((byte) insn.info.value);
28 file.writeByte((byte) insn.vregA);
33 public long getA(byte[] raw) throws IOException {
38 public long getB(byte[] raw) throws IOException {
43 public long getC(byte[] raw) throws IOException {

Completed in 587 milliseconds

<<41424344454647484950>>