| /linux/security/keys/trusted-keys/ |
| H A D | trusted_tpm1.c | 184 uint32_t ordinal; in TSS_checkhmac1() 202 ordinal = command; in TSS_checkhmac1() 214 sha1_update(&sha_ctx, (const u8 *)&ordinal, sizeof(ordinal)); in TSS_checkhmac1() 250 uint32_t ordinal; in TSS_checkhmac2() 269 ordinal = command; in TSS_checkhmac2() 286 sha1_update(&sha_ctx, (const u8 *)&ordinal, sizeof(ordinal)); in TSS_checkhmac2() 439 uint32_t ordinal; in tpm_seal() 473 ordinal in tpm_seal() 178 uint32_t ordinal; TSS_checkhmac1() local 244 uint32_t ordinal; TSS_checkhmac2() local 433 uint32_t ordinal; tpm_seal() local 553 uint32_t ordinal; tpm_unseal() local [all...] |
| /linux/drivers/char/tpm/ |
| H A D | tpm-buf.c | 18 int tpm_buf_init(struct tpm_buf *buf, u16 tag, u32 ordinal) in tpm_buf_init() argument 24 tpm_buf_reset(buf, tag, ordinal); in tpm_buf_init() 35 void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal) in tpm_buf_reset() argument 46 head->ordinal = cpu_to_be32(ordinal); in tpm_buf_reset()
|
| H A D | tpm-interface.c | 52 unsigned long tpm_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal) in tpm_calc_ordinal_duration() argument 55 return tpm2_calc_ordinal_duration(ordinal); in tpm_calc_ordinal_duration() 57 return tpm1_calc_ordinal_duration(chip, ordinal); in tpm_calc_ordinal_duration() 97 u32 count, ordinal; in tpm_try_transmit() local 107 ordinal = be32_to_cpu(header->ordinal); in tpm_try_transmit() 147 stop = jiffies + tpm_calc_ordinal_duration(chip, ordinal); in tpm_try_transmit()
|
| H A D | xen-tpmfront.c | 141 u32 ordinal; in vtpm_send() local 164 ordinal = be32_to_cpu(((struct tpm_header *)buf)->ordinal); in vtpm_send() 165 duration = tpm_calc_ordinal_duration(chip, ordinal); in vtpm_send()
|
| H A D | tpm1-cmd.c | 291 unsigned long tpm1_calc_ordinal_duration(struct tpm_chip *chip, u32 ordinal) in tpm1_calc_ordinal_duration() argument 300 if (ordinal < TPM_MAX_ORDINAL) in tpm1_calc_ordinal_duration() 301 duration_idx = tpm1_ordinal_duration[ordinal]; in tpm1_calc_ordinal_duration()
|
| H A D | tpm_vtpm_proxy.c | 306 switch (be32_to_cpu(hdr->ordinal)) { in vtpm_proxy_is_driver_command() 311 switch (be32_to_cpu(hdr->ordinal)) { in vtpm_proxy_is_driver_command()
|
| H A D | tpm2-space.c | 284 cc = be32_to_cpu(header->ordinal); in tpm_find_and_validate_cc()
|
| /linux/Documentation/ABI/testing/ |
| H A D | sysfs-firmware-sgi_uv | 57 unique ordinal value (ex. /sys/firmware/sgi_uv/hubs/hub_5) 96 A port object's name is appended by a unique ordinal value 105 ordinal value of the hub on the other end of the fabric 110 ordinal value of the port on the other end of the fabric cable
|
| H A D | sysfs-firmware-dmi-entries | 30 derived from an entry type's ordinal position. That is 73 instance The instance ordinal of the entry for the 76 position The ordinal position (zero-based) of the entry
|
| /linux/tools/testing/selftests/tc-testing/creating-plugins/ |
| H A D | AddingPlugins.txt | 31 def post_suite(self, ordinal) # see "SKIPPING" below 57 The post_suite method will receive the ordinal number of the last 64 The pre_case method will receive the ordinal number of the test
|
| /linux/include/linux/ |
| H A D | tpm.h | 366 __be32 ordinal; member 418 int tpm_buf_init(struct tpm_buf *buf, u16 tag, u32 ordinal); 419 void tpm_buf_reset(struct tpm_buf *buf, u16 tag, u32 ordinal);
|
| /linux/kernel/bpf/ |
| H A D | diagnostics.c | 1004 const char *ordinal = diag_arg_ordinal(argno); in bpf_diag_call_type() local 1018 if (ordinal && arg_name) in bpf_diag_call_type() 1019 arg_desc = bpf_diag_fmt(env, "%s argument (%s)", ordinal, arg_name); in bpf_diag_call_type() 1020 else if (ordinal) in bpf_diag_call_type() 1021 arg_desc = bpf_diag_fmt(env, "%s argument", ordinal); in bpf_diag_call_type() 1364 const char *ordinal = diag_arg_ordinal(argno); in diag_format_stack_arg() local 1366 if (ordinal && arg_name) in diag_format_stack_arg() 1368 ordinal, arg_name); in diag_format_stack_arg() 1369 else if (ordinal) in diag_format_stack_arg() 1370 scnprintf(buf, size, "outgoing stack argument %u (%s argument)", slot + 1, ordinal); in diag_format_stack_arg()
|
| /linux/drivers/platform/x86/ |
| H A D | uv_sysfs.c | 54 static int ordinal_to_nasid(int ordinal) in ordinal_to_nasid() argument 56 if (ordinal < num_cnodes && ordinal >= 0) in ordinal_to_nasid() 57 return UV_PNODE_TO_NASID(uv_blade_to_pnode(ordinal)); in ordinal_to_nasid()
|
| /linux/tools/perf/util/ |
| H A D | auxtrace.c | 497 u64 ordinal) in auxtrace_heapify() 503 if (heap_array[parent].ordinal <= ordinal) in auxtrace_heapify() 509 heap_array[pos].ordinal = ordinal; in auxtrace_heap__add() 513 u64 ordinal) in auxtrace_heap__add() 530 auxtrace_heapify(heap->heap_array, heap->heap_cnt++, queue_nr, ordinal); in auxtrace_heap__free() 566 if (heap_array[left].ordinal < heap_array[right].ordinal) { in auxtrace_heap__pop() 577 heap_array[last].ordinal); in auxtrace_record__info_priv_size() 491 auxtrace_heapify(struct auxtrace_heap_item * heap_array,unsigned int pos,unsigned int queue_nr,u64 ordinal) auxtrace_heapify() argument 507 auxtrace_heap__add(struct auxtrace_heap * heap,unsigned int queue_nr,u64 ordinal) auxtrace_heap__add() argument [all...] |
| H A D | auxtrace.h | 306 u64 ordinal; member 549 u64 ordinal);
|
| H A D | powerpc-vpadtl.c | 386 if (vpa->heap.heap_array[0].ordinal >= timestamp) in powerpc_vpadtl_process_queues() 396 ts = vpa->heap.heap_array[0].ordinal + 1; in powerpc_vpadtl_process_queues()
|
| H A D | s390-cpumsf.c | 858 if (sf->heap.heap_array[0].ordinal >= timestamp) in s390_cpumsf_process_queues() 867 ts = sf->heap.heap_array[0].ordinal + 1; in s390_cpumsf_process_queues()
|
| H A D | arm-spe.c | 1360 if (spe->heap.heap_array[0].ordinal >= timestamp) in arm_spe_process_timeless_queues() 1370 ts = spe->heap.heap_array[0].ordinal + 1; in arm_spe_context_switch()
|
| H A D | intel-bts.c | 567 if (bts->heap.heap_array[0].ordinal > timestamp) in intel_bts_process_queues()
|
| H A D | intel-pt.c | 3249 if (pt->heap.heap_array[0].ordinal >= timestamp) in intel_pt_process_queues() 3257 queue_nr, pt->heap.heap_array[0].ordinal, in intel_pt_process_queues() 3263 ts = pt->heap.heap_array[0].ordinal + 1; in intel_pt_process_queues()
|
| /linux/Documentation/arch/powerpc/ |
| H A D | associativity.rst | 35 (domainID index) that represents the 1 based ordinal in the associativity lists.
|
| /linux/Documentation/ABI/stable/ |
| H A D | sysfs-class-tpm | 83 ordinal has been executed successfully in the chip. A '0'
|
| /linux/tools/testing/selftests/tc-testing/ |
| H A D | README | 162 The pre-case hook receives the ordinal number and test id of the current test.
|
| /linux/drivers/net/ethernet/broadcom/bnxt/ |
| H A D | bnxt_ethtool.c | 3531 int bnxt_find_nvram_item(struct net_device *dev, u16 type, u16 ordinal, 4284 int bnxt_find_nvram_item(struct net_device *dev, u16 type, u16 ordinal, in bnxt_find_nvram_item() argument 4300 req->dir_ordinal = cpu_to_le16(ordinal); in bnxt_find_nvram_item() 4443 u16 type, ext, ordinal, attr; in bnxt_set_eeprom() local 4471 ordinal = eeprom->offset >> 16; in bnxt_set_eeprom() 4474 return bnxt_flash_nvram(dev, type, ordinal, ext, attr, 0, data, in bnxt_set_eeprom()
|
| /linux/tools/perf/scripts/python/ |
| H A D | exported-sql-viewer.py | 1221 def __init__(self, key, title = "", ordinal = ""): argument 1224 self.ordinal = ordinal 1229 return data_region.ordinal 1247 self.ordinal = str(pid).rjust(16) + str(exec_comm_id).rjust(8) + str(tid).rjust(16)
|