HomeSort by relevance Sort by last modified time
    Searched refs:rl (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 21 * @rl: Pointer to TLS record layer data
30 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
38 rl->cipher_suite = cipher_suite;
45 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_MD5;
46 rl->hash_size = MD5_MAC_LEN;
48 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_SHA1;
49 rl->hash_size = SHA1_MAC_LEN;
51 rl->hash_alg = CRYPTO_HASH_ALG_HMAC_SHA256;
52 rl->hash_size = SHA256_MAC_LEN;
59 rl->key_material_len = data->key_material
    [all...]
tlsv1_record.h 60 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
62 int tlsv1_record_change_write_cipher(struct tlsv1_record_layer *rl);
63 int tlsv1_record_change_read_cipher(struct tlsv1_record_layer *rl);
64 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
67 int tlsv1_record_receive(struct tlsv1_record_layer *rl,
tlsv1_client.c 65 if (tls_prf(conn->rl.tls_version,
79 key_block_len = 2 * (conn->rl.hash_size + conn->rl.key_material_len);
80 if (conn->rl.tls_version == TLS_VERSION_1)
81 key_block_len += 2 * conn->rl.iv_size;
82 if (tls_prf(conn->rl.tls_version,
95 os_memcpy(conn->rl.write_mac_secret, pos, conn->rl.hash_size);
96 pos += conn->rl.hash_size;
98 os_memcpy(conn->rl.read_mac_secret, pos, conn->rl.hash_size)
    [all...]
  /external/clang/test/CodeGen/
arm-atomics-m.c 30 long long rl; local
31 __atomic_load(&l, &rl, memory_order_seq_cst);
33 rl = 0;
34 __atomic_store(&l, &rl, memory_order_seq_cst);
arm-atomics-m0.c 30 long long rl; local
31 __atomic_load(&l, &rl, memory_order_seq_cst);
33 rl = 0;
34 __atomic_store(&l, &rl, memory_order_seq_cst);
arm-atomics.c 32 long long rl; local
33 __atomic_load(&l, &rl, memory_order_seq_cst);
35 rl = 0;
36 __atomic_store(&l, &rl, memory_order_seq_cst);
arm-asm-variable.c 9 register uint32_t rl asm("r1");
17 : [_rl] "=&r" (rl), [_rh] "=&r" (rh) \
  /external/ltp/testcases/network/rpc/rpc-tirpc/tests_pack/rpc_suite/tirpc/tirpc_addrmanagmt_rpcb_getmaps/
tirpc_rpcb_getmaps.c 54 rpcblist *rl = NULL; local
67 rl = rpcb_getmaps(nconf, argc[1]);
70 printf("RList @ %p\n", rl);
73 test_status = (rl != NULL) ? 0 : 1;
  /external/epid-sdk/epid/common/1.1/
file_parser.h 105 \param[out] rl
110 The size of rl in bytes.
123 Epid11PrivRl* rl, size_t* rl_len);
151 \param[out] rl
156 The size of rl in bytes.
168 EpidCaCertificate const* cert, Epid11SigRl* rl,
196 \param[out] rl
201 The size of rl in bytes.
214 Epid11GroupRl* rl, size_t* rl_len);
  /external/ltp/testcases/kernel/syscalls/mlock/
mlock02.c 99 struct rlimit rl; local
114 rl.rlim_cur = RLIM_INFINITY;
115 rl.rlim_max = RLIM_INFINITY;
116 SAFE_SETRLIMIT(cleanup, RLIMIT_MEMLOCK, &rl);
130 struct rlimit rl; local
139 rl.rlim_max = len - 1;
140 rl.rlim_cur = len - 1;
141 SAFE_SETRLIMIT(cleanup, RLIMIT_MEMLOCK, &rl);
160 struct rlimit rl; local
168 rl.rlim_max = 0
    [all...]
  /external/ltp/testcases/kernel/syscalls/mlockall/
mlockall02.c 179 struct rlimit rl; local
185 rl.rlim_max = 10;
186 rl.rlim_cur = 7;
188 if (setrlimit(RLIMIT_MEMLOCK, &rl) != 0) {
208 rl.rlim_max = 0;
209 rl.rlim_cur = 0;
210 if (setrlimit(RLIMIT_MEMLOCK, &rl) != 0) {
233 struct rlimit rl; local
240 rl.rlim_max = -1;
241 rl.rlim_cur = -1
    [all...]
mlockall03.c 215 struct rlimit rl; local
230 rl.rlim_max = 10;
231 rl.rlim_cur = 7;
233 if (setrlimit(RLIMIT_MEMLOCK, &rl) != 0) {
241 rl.rlim_max = 0;
242 rl.rlim_cur = 0;
244 if (setrlimit(RLIMIT_MEMLOCK, &rl) != 0) {
267 struct rlimit rl; local
273 rl.rlim_max = -1;
274 rl.rlim_cur = -1
    [all...]
  /external/curl/tests/libtest/
lib518.c 105 struct rlimit rl; local
114 if(sizeof(rl.rlim_max) > sizeof(long))
118 fmt = (sizeof(rl.rlim_max) < sizeof(long))?fmt_u:fmt_lu;
122 if(getrlimit(RLIMIT_NOFILE, &rl) != 0) {
131 if(rl.rlim_cur == RLIM_INFINITY)
135 msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_cur);
139 if(rl.rlim_max == RLIM_INFINITY)
143 msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_max);
161 if(rl.rlim_cur != rl.rlim_max)
    [all...]
lib537.c 107 struct rlimit rl; local
115 if(sizeof(rl.rlim_max) > sizeof(long))
119 fmt = (sizeof(rl.rlim_max) < sizeof(long))?fmt_u:fmt_lu;
123 if(getrlimit(RLIMIT_NOFILE, &rl) != 0) {
132 if(rl.rlim_cur == RLIM_INFINITY)
136 msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_cur);
140 if(rl.rlim_max == RLIM_INFINITY)
144 msnprintf(strbuff, sizeof(strbuff), fmt, rl.rlim_max);
156 if(rl.rlim_cur != rl.rlim_max)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
resource.c 116 struct rlimit rl; local
128 if (getrlimit(resource, &rl) == -1) {
134 if (sizeof(rl.rlim_cur) > sizeof(long)) {
136 (PY_LONG_LONG) rl.rlim_cur,
137 (PY_LONG_LONG) rl.rlim_max);
140 return Py_BuildValue("ll", (long) rl.rlim_cur, (long) rl.rlim_max);
146 struct rlimit rl; local
161 rl.rlim_cur = PyInt_AsLong(curobj);
162 if (rl.rlim_cur == (rlim_t)-1 && PyErr_Occurred())
    [all...]
  /external/python/cpython2/Modules/
resource.c 116 struct rlimit rl; local
128 if (getrlimit(resource, &rl) == -1) {
134 if (sizeof(rl.rlim_cur) > sizeof(long)) {
136 (PY_LONG_LONG) rl.rlim_cur,
137 (PY_LONG_LONG) rl.rlim_max);
140 return Py_BuildValue("ll", (long) rl.rlim_cur, (long) rl.rlim_max);
146 struct rlimit rl; local
173 rl.rlim_cur = PyInt_AsLong(curobj);
174 if (rl.rlim_cur == (rlim_t)-1 && PyErr_Occurred()
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_init/
4-1.c 62 struct rlimit rl; local
68 rl.rlim_max = MAX_MEM;
69 rl.rlim_cur = MAX_MEM;
70 rc = setrlimit(RLIMIT_DATA, &rl);
71 rc |= setrlimit(RLIMIT_AS, &rl);
  /external/epid-sdk/epid/verifier/src/
verify.c 39 static size_t EpidGetGroupRlCount(GroupRl const* rl) {
40 if (!rl)
43 return ntohl(rl->n3);
46 static size_t EpidGetPrivRlCount(PrivRl const* rl) {
47 if (!rl)
50 return ntohl(rl->n1);
53 static size_t EpidGetSigRlCount(SigRl const* rl) {
54 if (!rl)
57 return ntohl(rl->n2);
60 static size_t EpidGetVerifierRlCount(VerifierRl const* rl) {
    [all...]
  /external/u-boot/drivers/bios_emulator/x86emu/
ops2.c 169 int mod, rl, rh; local
245 FETCH_DECODE_MODRM(mod, rh, rl);
247 destoffset = decode_rmXX_address(mod, rl);
251 destreg = DECODE_RM_BYTE_REGISTER(rl);
293 int mod, rl, rh; local
299 FETCH_DECODE_MODRM(mod, rh, rl);
301 srcoffset = decode_rmXX_address(mod, rl);
329 srcreg = DECODE_RM_LONG_REGISTER(rl);
338 srcreg = DECODE_RM_WORD_REGISTER(rl);
356 int mod, rl, rh local
427 int mod, rl, rh; local
517 int mod, rl, rh; local
590 int mod, rl, rh; local
661 int mod, rl, rh; local
722 int mod, rl, rh; local
814 int mod, rh, rl; local
843 int mod, rl, rh; local
915 int mod, rh, rl; local
944 int mod, rh, rl; local
973 int mod, rl, rh; local
1036 int mod, rl, rh; local
1071 int mod, rl, rh; local
1207 int mod, rl, rh; local
1279 int mod, rl, rh; local
1340 int mod, rl, rh; local
1401 int mod, rl, rh; local
1464 int mod, rl, rh; local
    [all...]
  /external/epid-sdk/epid/common/1.1/src/
file_parser.c 39 EpidCaCertificate const* cert, void* rl,
96 // Verify that RL in file buffer contains of integer number of entries
111 // If pointer to output buffer is NULL it should return required size of RL
112 if (!rl) {
122 if (0 != memcpy_S(rl, *rl_len, buf_rl, buf_rl_len)) return kEpidBadArgErr;
173 Epid11PrivRl* rl, size_t* rl_len) {
174 return Epid11ParseRlFile(buf, len, cert, rl, rl_len, kPrivRlFile);
178 EpidCaCertificate const* cert, Epid11SigRl* rl,
180 return Epid11ParseRlFile(buf, len, cert, rl, rl_len, kSigRlFile);
185 Epid11GroupRl* rl, size_t* rl_len)
    [all...]
  /external/u-boot/include/linux/
math64.h 194 } rl, rm, rn, rh, a0, b0; local
200 rl.ll = mul_u32_u32(a0.l.low, b0.l.low);
210 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low;
215 * The 128-bit result of the multiplication is in rl.ll and rh.ll,
219 return rl.ll;
221 return (rl.ll >> shift) | (rh.ll << (64 - shift));
240 } u, rl, rh; local
243 rl.ll = mul_u32_u32(u.l.low, mul);
244 rh.ll = mul_u32_u32(u.l.high, mul) + rl.l.high
    [all...]
  /external/python/cpython2/Mac/Modules/
autoGIL.c 55 CFRunLoopRef rl; local
69 rl = CFRunLoopGetCurrent();
70 if (rl == NULL) {
96 CFRunLoopAddObserver(rl, observer, kCFRunLoopDefaultMode);
  /external/epid-sdk/epid/common/
file_parser.h 174 \param[out] rl
179 The size of rl in bytes.
191 EpidCaCertificate const* cert, PrivRl* rl,
219 \param[out] rl
224 The size of rl in bytes.
236 EpidCaCertificate const* cert, SigRl* rl,
264 \param[out] rl
269 The size of rl in bytes.
281 EpidCaCertificate const* cert, GroupRl* rl,
  /external/python/cpython3/Modules/
resource.c 172 rlimit2py(struct rlimit rl)
174 if (sizeof(rl.rlim_cur) > sizeof(long)) {
176 (long long) rl.rlim_cur,
177 (long long) rl.rlim_max);
179 return Py_BuildValue("ll", (long) rl.rlim_cur, (long) rl.rlim_max);
194 struct rlimit rl; local
202 if (getrlimit(resource, &rl) == -1) {
206 return rlimit2py(rl);
222 struct rlimit rl; local
    [all...]
  /external/syzkaller/vendor/google.golang.org/appengine/log/
log.go 193 func protoToRecord(rl *pb.RequestLog) *Record {
194 offset, err := proto.Marshal(rl.Offset)
199 AppID: *rl.AppId,
200 ModuleID: rl.GetModuleId(),
201 VersionID: *rl.VersionId,
202 RequestID: rl.RequestId,
204 IP: *rl.Ip,
205 Nickname: rl.GetNickname(),
206 AppEngineRelease: string(rl.GetAppEngineRelease()),
207 StartTime: time.Unix(0, *rl.StartTime*1e3)
    [all...]

Completed in 1293 milliseconds

1 2 3 4 5