Home
last modified time | relevance | path

Searched refs:words (Results 1 – 16 of 16) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/pk/asn1/der/object_identifier/
A Dder_length_object_identifier.c39 int der_length_object_identifier(const unsigned long *words, unsigned long nwords, unsigned long *o… in der_length_object_identifier() argument
43 LTC_ARGCHK(words != NULL); in der_length_object_identifier()
53 if (words[0] > 2 || (words[0] < 2 && words[1] > 39)) { in der_length_object_identifier()
59 wordbuf = words[0] * 40 + words[1]; in der_length_object_identifier()
65 wordbuf = words[y+1]; in der_length_object_identifier()
A Dder_encode_object_identifier.c26 int der_encode_object_identifier(const unsigned long *words, unsigned long nwords, in der_encode_object_identifier() argument
32 LTC_ARGCHK(words != NULL); in der_encode_object_identifier()
37 if ((err = der_length_object_identifier(words, nwords, &x)) != CRYPT_OK) { in der_encode_object_identifier()
47 wordbuf = words[0] * 40 + words[1]; in der_encode_object_identifier()
52 wordbuf = words[y + 1]; in der_encode_object_identifier()
66 wordbuf = words[0] * 40 + words[1]; in der_encode_object_identifier()
91 wordbuf = words[i + 1]; in der_encode_object_identifier()
A Dder_decode_object_identifier.c27 unsigned long *words, unsigned long *outlen) in der_decode_object_identifier() argument
33 LTC_ARGCHK(words != NULL); in der_decode_object_identifier()
76 words[0] = t / 40; in der_decode_object_identifier()
77 words[1] = t % 40; in der_decode_object_identifier()
79 words[0] = 2; in der_decode_object_identifier()
80 words[1] = t - 80; in der_decode_object_identifier()
84 words[y++] = t; in der_decode_object_identifier()
/optee_os/scripts/
A Dgen_ld_sects.py38 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 Dmem_usage.py96 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 Darm32_sysreg.py137 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/out/arm/export-ta_arm64/mk/
A Dcleandirs.mk14 $(if $(1),$(call _reverse,$(wordlist 2,$(words $(1)),$(1)))) $(firstword $(1))
36 $(eval _tail := $(wordlist 201, $(words $(1)), $(1)))
A Dta_dev_kit.mk10 ifneq (1, $(words $(BINARY) $(LIBNAME) $(SHLIBNAME)))
/optee_os/mk/
A Dcleandirs.mk14 $(if $(1),$(call _reverse,$(wordlist 2,$(words $(1)),$(1)))) $(firstword $(1))
36 $(eval _tail := $(wordlist 201, $(words $(1)), $(1)))
/optee_os/out/arm/export-ta_arm32/mk/
A Dcleandirs.mk14 $(if $(1),$(call _reverse,$(wordlist 2,$(words $(1)),$(1)))) $(firstword $(1))
36 $(eval _tail := $(wordlist 201, $(words $(1)), $(1)))
A Dta_dev_kit.mk10 ifneq (1, $(words $(BINARY) $(LIBNAME) $(SHLIBNAME)))
/optee_os/core/lib/libtomcrypt/src/hashes/
A Dsha3.c272 unsigned long words; in sha3_process() local
299 words = inlen / sizeof(ulong64); in sha3_process()
300 tail = inlen - words * sizeof(ulong64); in sha3_process()
302 for(i = 0; i < words; i++, in += sizeof(ulong64)) { in sha3_process()
/optee_os/core/lib/libtomcrypt/src/headers/
A Dtomcrypt_pk.h693 int der_encode_object_identifier(const unsigned long *words, unsigned long nwords,
696 unsigned long *words, unsigned long *outlen);
697 int der_length_object_identifier(const unsigned long *words, unsigned long nwords, unsigned long *o…
A Dtomcrypt_cfg.h274 #error Cannot be 32 and 64 bit words...
/optee_os/ta/mk/
A Dta_dev_kit.mk10 ifneq (1, $(words $(BINARY) $(LIBNAME) $(SHLIBNAME)))
/optee_os/lib/libutils/isoc/
A Dbget.doc242 linked-block scheme (in other words, larger than <pool_incr> minus the

Completed in 15 milliseconds