/xen/tools/include/xen-foreign/ |
A D | mkheader.py | 113 input = ""; variable 120 input += f.read(); 142 for line in re.findall("#define[^\n]+", input): 158 input = re.sub("#define[^\n]+\n", "", input); variable 159 input = re.compile("/\*(.*?)\*/", re.S).sub("", input) variable 160 input = re.compile("\n\s*\n", re.S).sub("\n", input); variable 165 match = re.search(regex, input, re.S) 175 match = re.search(regex, input, re.S)
|
/xen/xen/common/ |
A D | unlzo.c | 71 static int INIT parse_header(u8 *input, int *skip, int in_len) in parse_header() argument 74 u8 *parse = input; in parse_header() 75 u8 *end = input + in_len; in parse_header() 124 *skip = parse - input; in parse_header() 128 STATIC int INIT unlzo(u8 *input, unsigned int in_len, in unlzo() argument 154 if (input && fill) { in unlzo() 157 } else if (input) { in unlzo() 158 in_buf = input; in unlzo() 177 if (!parse_header(input, &skip, in_len)) { in unlzo() 258 if (!input) in unlzo()
|
A D | unlz4.c | 25 STATIC int INIT unlz4(unsigned char *input, unsigned int in_len, in unlz4() argument 40 size_t out_len = get_unaligned_le32(input + in_len); in unlz4() 58 if (input && fill) { in unlz4() 61 } else if (input) { in unlz4() 62 inp = input; in unlz4() 160 if (!input) in unlz4()
|
/xen/tools/libxl/ |
A D | libxl_cpuid.c | 72 if ((*list)[i].input[0] == leaf && (*list)[i].input[1] == subleaf) in cpuid_find_match() 77 (*list)[i].input[0] = leaf; in cpuid_find_match() 78 (*list)[i].input[1] = subleaf; in cpuid_find_match() 80 (*list)[i + 1].input[0] = XEN_CPUID_INPUT_UNUSED; in cpuid_find_match() 519 l[size].input[0] = XEN_CPUID_INPUT_UNUSED; in libxl__cpuid_policy_list_parse_json() 520 l[size].input[1] = XEN_CPUID_INPUT_UNUSED; in libxl__cpuid_policy_list_parse_json() 532 for (j = 0; j < ARRAY_SIZE(l[0].input); j++) { in libxl__cpuid_policy_list_parse_json() 537 l[i].input[j] = XEN_CPUID_INPUT_UNUSED; in libxl__cpuid_policy_list_parse_json() 585 (*dst)[len].input[0] = XEN_CPUID_INPUT_UNUSED; in libxl_cpuid_policy_list_copy() 586 (*dst)[len].input[1] = XEN_CPUID_INPUT_UNUSED; in libxl_cpuid_policy_list_copy() [all …]
|
/xen/stubdom/vtpmmgr/ |
A D | tpmrsa.c | 60 const unsigned char *input, in tpmrsa_public() argument 69 MPI_CHK( mpi_read_binary( &T, input, ctx->len ) ); in tpmrsa_public() 95 TPM_RESULT tpmrsa_sigcheck(tpmrsa_context *ctx, const unsigned char *input, const unsigned char *sh… in tpmrsa_sigcheck() argument 100 rv = tpmrsa_public(ctx, input, tmp); in tpmrsa_sigcheck() 155 const unsigned char *input, in tpmrsa_pub_encrypt_oaep() argument 185 input, ilen); in tpmrsa_pub_encrypt_oaep()
|
A D | tpmrsa.h | 54 TPM_RESULT tpmrsa_sigcheck(tpmrsa_context *ctx, const unsigned char *input, const unsigned char *sh… 61 const unsigned char *input,
|
/xen/tools/fuzz/libelf/ |
A D | afl-libelf-fuzzer.c | 9 static uint8_t input[INPUT_SIZE]; variable 31 size = fread(input, 1, INPUT_SIZE, fp); in main() 47 return LLVMFuzzerTestOneInput(input, size); in main()
|
/xen/tools/fuzz/x86_instruction_emulator/ |
A D | afl-harness.c | 9 static uint8_t input[INPUT_SIZE]; variable 94 size = fread(input, 1, INPUT_SIZE, fp); in main() 105 LLVMFuzzerTestOneInput(input, size); in main()
|
A D | fuzz-emul.c | 40 } input; variable 898 .regs = &input.regs, in LLVMFuzzerTestOneInput() 906 memset(&input, 0, sizeof(input)); in LLVMFuzzerTestOneInput() 920 memcpy(&input, data_p, size); in LLVMFuzzerTestOneInput() 922 state.corpus = &input; in LLVMFuzzerTestOneInput()
|
/xen/tools/tests/x86_emulator/ |
A D | blowfish.c | 20 uint64_t blowfish_test(uint64_t input); 432 uint64_t blowfish_test(uint64_t input) in blowfish_test() argument 434 uint32_t L = input >> 32, R = input; in blowfish_test()
|
/xen/xen/arch/arm/ |
A D | kernel.c | 255 char *output, *input; in kernel_decompress() local 275 input = ioremap_cache(addr, size); in kernel_decompress() 276 if ( input == NULL ) in kernel_decompress() 279 output_size = output_length(input, size); in kernel_decompress() 284 iounmap(input); in kernel_decompress() 290 rc = perform_gunzip(output, input, size); in kernel_decompress() 292 iounmap(input); in kernel_decompress()
|
A D | vpl011.c | 91 struct domain *input = console_input_domain(); in vpl011_write_data_xen() local 96 if ( d == input ) in vpl011_write_data_xen() 130 if ( input != NULL ) in vpl011_write_data_xen() 131 rcu_unlock_domain(input); in vpl011_write_data_xen()
|
/xen/xen/include/asm-x86/guest/ |
A D | hyperv-hcall.h | 64 paddr_t input, paddr_t output) in hv_do_rep_hypercall() argument 74 status = hv_do_hypercall(control, input, output); in hv_do_rep_hypercall()
|
/xen/xen/drivers/acpi/apei/ |
A D | apei-internal.h | 41 u64 input) in apei_exec_ctx_set_input() argument 43 ctx->value = input; in apei_exec_ctx_set_input()
|
/xen/xen/include/asm-x86/ |
A D | alternative.h | 132 #define alternative_input(oldinstr, newinstr, feature, input...) \ argument 134 : : input) 137 #define alternative_io(oldinstr, newinstr, feature, output, input...) \ argument 139 : output : input) 150 feature2, output, input...) \ argument 153 : output : input)
|
/xen/xen/tools/ |
A D | gen-cpuid.py | 14 def __init__(self, input, output): argument 16 self.source = input 17 self.input = open_file_or_fd(input, "r", 2) 55 for l in state.input.readlines():
|
/xen/xen/arch/x86/hvm/viridian/ |
A D | viridian.c | 540 } input; in viridian_hypercall() local 557 input.raw = regs->rcx; in viridian_hypercall() 562 input.raw = (regs->rdx << 32) | regs->eax; in viridian_hypercall() 570 switch ( input.call_code ) in viridian_hypercall() 591 if ( input.fast ) in viridian_hypercall() 615 output.rep_complete = input.rep_count; in viridian_hypercall() 630 if ( input.fast ) in viridian_hypercall() 682 input.call_code); in viridian_hypercall()
|
/xen/tools/xl/ |
A D | xl_parse.h | 55 void trim(char_predicate_t predicate, const char *input, char **output);
|
/xen/config/ |
A D | Paths.mk.in | 5 # because of this these variables are defined on one master input source file
|
/xen/tools/xenstat/xentop/ |
A D | TODO | 1 Display error messages on the help line after bad input at a prompt.
|
/xen/docs/man/ |
A D | xentrace_format.1.pod | 12 standard input and reformats it according to the rules in a file of
|
/xen/docs/misc/ |
A D | kconfig-language.rst | 44 the config option, input prompt, dependencies, help text and default 46 name, but every definition can have only a single input prompt and the 59 definition optionally accepts an input prompt, so these two examples 69 - input prompt: "prompt" <prompt> ["if" <expr>] 83 value was set by the user (via the input prompt above). If an input 194 This allows to limit the range of possible input values for int 195 and hex symbols. The user can only input a value which is larger than 232 the input range of tristate symbols. The tristate logic used in the
|
/xen/docs/features/ |
A D | intel_psr_mba.pandoc | 51 Linear mode: the input precision is defined as 100-(MBA_MAX). For instance, 52 if the MBA_MAX value is 90, the input precision is 10%. Values not an even 57 Non-linear mode: input delay values are powers-of-two from zero to the
|
A D | dom0less.pandoc | 127 A user is allowed to configure the key sequence to switch input. 129 switches input in case of dom0less mode.
|
/xen/tools/ocaml/libs/xb/ |
A D | xb.ml | 126 let input con = function 133 (* try to get more data from input stream *)
|