Home | History | Annotate | Download | only in tpm2

Lines Matching defs:from

1 // This file was extracted from the TCG Published
33 UINT16 from;
36 for(from = 0; b->buffer[from] == 0 && from < size; from++);
37 b->size -= from;
38 for(to = 0; from < size; to++, from++ )
39 b->buffer[to] = b->buffer[from];
62 UINT32 from;
75 for(from = in->size, to = size; from > 0;)
76 in->buffer[--to] = in->buffer[--from];
87 // This function to subtract one unsigned value from another c = a - b. c may be the same as a or b.