Searched refs:words (Results 1 – 13 of 13) sorted by relevance
/optee_os-3.20.0/core/lib/libtomcrypt/src/pk/asn1/der/object_identifier/ |
A D | der_length_object_identifier.c | 32 int der_length_object_identifier(const unsigned long *words, unsigned long nwords, unsigned long *o… in der_length_object_identifier() argument 36 LTC_ARGCHK(words != NULL); in der_length_object_identifier() 46 if (words[0] > 2 || (words[0] < 2 && words[1] > 39)) { in der_length_object_identifier() 52 wordbuf = words[0] * 40 + words[1]; in der_length_object_identifier() 58 wordbuf = words[y+1]; in der_length_object_identifier()
|
A D | der_encode_object_identifier.c | 19 int der_encode_object_identifier(const unsigned long *words, unsigned long nwords, in der_encode_object_identifier() argument 25 LTC_ARGCHK(words != NULL); in der_encode_object_identifier() 30 if ((err = der_length_object_identifier(words, nwords, &x)) != CRYPT_OK) { in der_encode_object_identifier() 40 wordbuf = words[0] * 40 + words[1]; in der_encode_object_identifier() 45 wordbuf = words[y + 1]; in der_encode_object_identifier() 59 wordbuf = words[0] * 40 + words[1]; in der_encode_object_identifier() 84 wordbuf = words[i + 1]; in der_encode_object_identifier()
|
A D | der_decode_object_identifier.c | 20 unsigned long *words, unsigned long *outlen) in der_decode_object_identifier() argument 26 LTC_ARGCHK(words != NULL); in der_decode_object_identifier() 69 words[0] = t / 40; in der_decode_object_identifier() 70 words[1] = t % 40; in der_decode_object_identifier() 72 words[0] = 2; in der_decode_object_identifier() 73 words[1] = t - 80; in der_decode_object_identifier() 77 words[y++] = t; in der_decode_object_identifier()
|
/optee_os-3.20.0/scripts/ |
A D | gen_ld_sects.py | 38 words = line.split() 40 if len(words) < 3: 43 if words[0] == "[": 48 sect_name = words[name_offs] 49 sect_type = words[name_offs + 1]
|
A D | mem_usage.py | 96 words = line.split() 97 if len(words) == 8 and words[7] == '_end_of_ram': 98 end_of_ram = int(words[1], 16) 113 words = line.split() 114 if words[0] == '[': 115 words.pop(0) 118 flags) = words[:8]
|
A D | arm32_sysreg.py | 137 words = line.split() 138 if len(words) == 0: 157 reg_name = words[0] 158 crn = words[1] 159 opc1 = words[2] 160 crm = words[3] 161 opc2 = words[4] 162 access_type = words[5] 163 descr = " ".join(words[6:])
|
/optee_os-3.20.0/mk/ |
A D | cleandirs.mk | 14 $(if $(1),$(call _reverse,$(wordlist 2,$(words $(1)),$(1)))) $(firstword $(1)) 36 $(eval _tail := $(wordlist 201, $(words $(1)), $(1)))
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/hashes/ |
A D | sha3.c | 265 unsigned long words; in sha3_process() local 292 words = inlen / sizeof(ulong64); in sha3_process() 293 tail = inlen - words * sizeof(ulong64); in sha3_process() 295 for(i = 0; i < words; i++, in += sizeof(ulong64)) { in sha3_process()
|
/optee_os-3.20.0/core/lib/libtomcrypt/src/headers/ |
A D | tomcrypt_pk.h | 701 int der_encode_object_identifier(const unsigned long *words, unsigned long nwords, 704 unsigned long *words, unsigned long *outlen); 705 int der_length_object_identifier(const unsigned long *words, unsigned long nwords, unsigned long *o…
|
A D | tomcrypt_cfg.h | 269 #error Cannot be 32 and 64 bit words...
|
/optee_os-3.20.0/ta/mk/ |
A D | ta_dev_kit.mk | 10 ifneq (1, $(words $(BINARY) $(LIBNAME) $(SHLIBNAME)))
|
/optee_os-3.20.0/core/drivers/ |
A D | versal_trng.c | 587 const size_t words = TRNG_BURST_SIZE_BITS / TRNG_REG_SIZE; in trng_collect_random() local 630 for (wcnt = 0; wcnt < words; wcnt++) { in trng_collect_random()
|
/optee_os-3.20.0/lib/libutils/isoc/ |
A D | bget.doc | 242 linked-block scheme (in other words, larger than <pool_incr> minus the
|
Completed in 14 milliseconds