Home | History | Annotate | Download | only in generator

Lines Matching refs:split

184     """Split the passed in word by the regex used to pick TPM algorithms.
193 The split would result in a three element list: the part before !ALG
200 The first and last elements of the split are used as the prefix and suffix
204 in the selector column in table 127 (TPM_ALG_!ALG) In this case the split
210 split returns a single element list, the second element set to None is
214 word: a string, the encoded algorithm string to be split.
217 a tuple of two strings, first and last elements of the split, either one
221 parts = self._alg_macro.split(word)
223 parts = word.split('!ALG')
341 type_name = self._title.split()[4]
356 if int(self._title.split()[1]) in self.skip_tables:
374 command_name = self._title.split()[2]
420 for alg_type in alg_type_str.split('.'):
463 elements = self._alg_macro.split(token)
489 new_value.split('_')[1:])
515 [x.strip() for x in new_value[1:-1].strip().split(':')])
553 name_pieces = [x.lower() for x in name.split('_')[1:]]
557 bit_range = [x.replace(' ', '') for x in field.split(':')]
596 alg_spec = row[0].split()
605 raw_size_parts = self._alg_macro.split(alg_spec[1][1:-1])
612 selector_parts = self._alg_macro.split(row[2])
720 lower, upper = [x.strip() for x in bounds.split(':')]
737 lower, upper = [x.strip() for x in bounds.split(':')]
776 qualifier = [x for x in ('ECC', 'RSA') if x == type_.split('_')[-1]]
778 type_base = self._alg_macro.split(name_)[0]
805 v_list = value.split()