| /third_party/ulib/uboringssl/crypto/chacha/ |
| A D | chacha.c | 135 x[i] += input[i]; in chacha_core() 147 uint32_t input[16]; in CRYPTO_chacha_20() local 156 input[4] = U8TO32_LITTLE(key + 0); in CRYPTO_chacha_20() 157 input[5] = U8TO32_LITTLE(key + 4); in CRYPTO_chacha_20() 158 input[6] = U8TO32_LITTLE(key + 8); in CRYPTO_chacha_20() 159 input[7] = U8TO32_LITTLE(key + 12); in CRYPTO_chacha_20() 161 input[8] = U8TO32_LITTLE(key + 16); in CRYPTO_chacha_20() 162 input[9] = U8TO32_LITTLE(key + 20); in CRYPTO_chacha_20() 166 input[12] = counter; in CRYPTO_chacha_20() 177 chacha_core(buf, input); in CRYPTO_chacha_20() [all …]
|
| /third_party/ulib/lz4/ |
| A D | xxhash.c | 243 const BYTE* p = (const BYTE*)input; in XXH32_endian_align() 318 unsigned XXH32 (const void* input, size_t len, unsigned seed) in XXH32() argument 324 XXH32_update(&state, input, len); in XXH32() 348 const BYTE* p = (const BYTE*)input; in XXH64_endian_align() 464 XXH64_update(&state, input, len); in XXH64() 571 const BYTE* p = (const BYTE*)input; in XXH32_update_endian() 575 if (input==NULL) return XXH_ERROR; in XXH32_update_endian() 582 XXH_memcpy((BYTE*)(state->mem32) + state->memsize, input, len); in XXH32_update_endian() 725 const BYTE* p = (const BYTE*)input; in XXH64_update_endian() 729 if (input==NULL) return XXH_ERROR; in XXH64_update_endian() [all …]
|
| /third_party/ulib/lz4/include/lz4/ |
| A D | xxhash.h | 119 unsigned int XXH32 (const void* input, size_t length, unsigned seed); 120 unsigned long long XXH64 (const void* input, size_t length, unsigned long long seed); 162 XXH_errorcode XXH32_update (XXH32_state_t* statePtr, const void* input, size_t length); 166 XXH_errorcode XXH64_update (XXH64_state_t* statePtr, const void* input, size_t length);
|
| /third_party/lib/acpica/source/compiler/ |
| A D | prparser.l | 186 while (((c = input ()) != '*') && (c != EOF)) in PrDoCommentType1() 194 if (((c = input ()) != '/') && (c != EOF)) in PrDoCommentType1() 227 while (((c = input ()) != '\n') && (c != EOF)) in PrDoCommentType2()
|
| A D | aslsupport.l | 122 while ((c = input()) != '\n' && c != EOF) in AslDoLineDirective() 477 while (((c = input ()) != '*') && (c != EOF)) in AslDoComment() 504 if (((c1 = input ()) != '/') && (c1 != EOF)) in AslDoComment() 553 while (((c = input ()) != '\n') && (c != EOF)) in AslDoCommentType2() 602 while ((StringChar = input()) != EOF) in AslDoStringLiteral()
|
| /third_party/tools/android/ |
| A D | mkdtimg | 38 def compress(filename, input, output): 51 data = input.read(1024) 63 input = open(dtb_file, 'rb') 65 compress(dtb_file, input, output) 66 input.close()
|
| /third_party/ulib/backtrace/ |
| A D | stest.c | 50 int input[MAX]; member 122 memcpy (a, tests[i].input, tests[i].count * sizeof (int)); in main()
|
| /third_party/ulib/jemalloc/test/unit/ |
| A D | util.c | 66 const char *input; in TEST_BEGIN() member 141 result = malloc_strtoumax(test->input, &remainder, test->base); in TEST_BEGIN() 145 test->expected_errno_name, test->input, test->base); in TEST_BEGIN() 148 test->input, test->base); in TEST_BEGIN() 152 test->input, test->base); in TEST_BEGIN()
|
| A D | stats_print.c | 908 const char *input = invalid_inputs[i]; in TEST_BEGIN() local 911 assert_false(parser_append(&parser, input), in TEST_BEGIN() 914 "Unexpected parse success for input: %s", input); in TEST_BEGIN() 919 const char *input = valid_inputs[i]; in TEST_BEGIN() local 922 assert_false(parser_append(&parser, input), in TEST_BEGIN() 925 "Unexpected parse error for input: %s", input); in TEST_BEGIN()
|
| /third_party/uapp/dash/ |
| A D | rules.mk | 27 $(LOCAL_DIR)/src/input.c \
|
| /third_party/uapp/dash/src/ |
| A D | TOUR | 181 any of the CTL characters mentioned above appear in the input, 199 redir.c Code to handle redirection of input and output. 326 INPUT: The basic input routine is pgetc, which reads from the 327 current input file. There is a stack of input files; the current 328 input file is the top file on this stack. The code allows the 329 input to come from a string rather than a file. (This is for the
|
| A D | nodetypes | 147 doc nodeptr # input to command (NARG node)
|
| /third_party/ulib/linenoise/ |
| A D | README.markdown | 72 standard input is not a tty, which happens every time you redirect a file 132 input when she or he presses the `<TAB>` key. 142 The completion must be a function returning `void` and getting as input 155 Basically in your completion callback, you inspect the input, and return
|
| /third_party/dev/ethernet/e1000/ |
| A D | if_em.c | 4405 static int input = 3; /* default is full */ in em_set_flowcntl() local 4408 error = sysctl_handle_int(oidp, &input, 0, req); in em_set_flowcntl() 4413 if (input == adapter->fc) /* no change? */ in em_set_flowcntl() 4416 switch (input) { in em_set_flowcntl() 4421 adapter->hw.fc.requested_mode = input; in em_set_flowcntl() 4422 adapter->fc = input; in em_set_flowcntl()
|
| /third_party/ulib/musl/ |
| A D | WHATSNEW | 170 worked around a problem with input buffering on terminals reblocking 611 - wrong file position for buffered input streams on exit 1362 - memory leak in regexec when input contains illegal sequence 1649 - malloc_usable_size now accepts null pointer input 1660 - tsearch, tfind, and tdelete failed to handle null pointer input
|
| /third_party/lib/acpica/ |
| A D | changes.txt | 1323 an acpidump output file as input. ACPICA BZ 1088. David Box. 6232 AE_BAD_PARAMETER if the input register pointer is null, and 6737 input 6933 AE_BAD_PARAMETER if input handle is invalid. BZ 474 6958 characters in the input. BZ 441 8144 - Initialize input array to zero in AcpiInitializeTables 10154 input 10441 input 13013 of the input Buffer object. 13823 input AML file, producing as output a text ASL file with the [all …]
|