/third_party/pcre2/pcre2/src/ |
H A D | pcre2_substitute.c | 326 scb.input = subject; in pcre2_substitute()
|
/third_party/pulseaudio/src/modules/ |
H A D | module-suspend-on-idle.c | 30 #include <pulsecore/sink-input.h>
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | cli-text.c | 33 #include <pulsecore/sink-input.h> 499 pa_strbuf_printf(s, "\tdirect on input: %u\n", o->direct_on_input->index); in pa_source_output_list_to_string() 523 pa_strbuf_printf(s, "%u sink input(s) available.\n", pa_idxset_size(c->sink_inputs)); in pa_sink_input_list_to_string()
|
H A D | protocol-simple.c | 31 #include <pulsecore/sink-input.h> 79 SINK_INPUT_MESSAGE_POST_DATA = PA_SINK_INPUT_MESSAGE_MAX, /* data from main loop to sink input */ 84 CONNECTION_MESSAGE_REQUEST_DATA, /* data requested from sink input from the main loop */ 266 /* If there is a sink input, we first drain what we already have read before shutting down the connection */ in do_work() 544 pa_log("Failed to create sink input."); in pa_simple_protocol_connect()
|
/third_party/openssl/crypto/md5/asm/ |
H A D | md5-sparcv9.pl | 34 ($ctx,$inp,$len)=("%i0","%i1","%i2"); # input arguments 327 ldxa [$inp+0]%asi,@X[0] ! load little-endian input
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
H A D | formatutils9.cpp | 55 const uint8_t *input, in UnreachableLoad() 52 UnreachableLoad(size_t width, size_t height, size_t depth, const uint8_t *input, size_t inputRowPitch, size_t inputDepthPitch, uint8_t *output, size_t outputRowPitch, size_t outputDepthPitch) UnreachableLoad() argument
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | glslang_tab.cpp | 2296 YYDPRINTF ((stderr, "Now at end of input.\n")); 4967 /* Return failure if at end of input. */
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | rpng-x.c | 586 wm_hints->input = True; in rpng_x_create_window()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/amdgpu_dm/ |
H A D | amdgpu_dm.c | 3860 struct dc_dcc_surface_param input; 3866 memset(&input, 0, sizeof(input)); 3881 input.format = format; 3882 input.surface_size.width = plane_size->surface_size.width; 3883 input.surface_size.height = plane_size->surface_size.height; 3884 input.swizzle_mode = tiling_info->gfx9.swizzle; 3887 input.scan = SCAN_DIRECTION_HORIZONTAL; 3889 input.scan = SCAN_DIRECTION_VERTICAL; 3891 if (!dc->cap_funcs.get_dcc_compression_cap(dc, &input, [all...] |
/third_party/node/deps/undici/ |
H A D | undici.js | 1680 function isomorphicDecode(input) { 1681 if (input.length < MAXIMUM_ARGUMENT_LENGTH) { 1682 return String.fromCharCode(...input); 1684 return input.reduce((previous, current) => previous + String.fromCharCode(current), ""); 1697 function isomorphicEncode(input) { 1698 for (let i = 0; i < input.length; i++) { 1699 assert(input.charCodeAt(i) <= 255); 1701 return input; 4573 let input = URLSerializer(dataURL, true); 4574 input [all...] |
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
H A D | gl4cShaderSubroutineTests.cpp | 2410 /* Declare main(): prepare input argument for the subroutine function */ in getVertexShaderBody() 2454 /* Declare main(): call the subroutine. Verify the input and write the result in getVertexShaderBody() 3675 * @param expected_results Test data. [0] is used as input data. All are used as expected_results 4155 /* Set up input data uniforms */ in testDraw() 4328 /* Set up input data uniforms */ in iterate() 4737 const Utils::vec4<glw::GLfloat>* input = 0; in logError() local 4744 input = dynamic_values; in logError() 4749 input = dynamic_values; in logError() 4754 input = constant_values; in logError() 4759 input in logError() [all...] |
/third_party/openssl/test/ |
H A D | evp_extra_test.c | 1593 const unsigned char *input = ak->kder; in test_d2i_AutoPrivateKey() local 1597 p = input; in test_d2i_AutoPrivateKey() 1599 || !TEST_ptr_eq(p, input + input_len) in test_d2i_AutoPrivateKey() 2268 const unsigned char *input = ak->kder; in test_EVP_PKEY_check() local 2276 if (!TEST_ptr(pkey = load_example_key(ak->keytype, input, input_len))) in test_EVP_PKEY_check() 3572 const unsigned char *input; member 3696 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_init_seq() 3736 const unsigned char *input; member 3784 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, t->inlen))) { in test_evp_reset() 3800 if (!TEST_true(EVP_CipherUpdate(ctx, outbuf, &outlen1, t->input, in test_evp_reset() [all...] |
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | aesni-intel_asm.S | 277 # Requires the input data be at least 1 byte long because of READ_PARTIAL_BLOCK 510 * To compute GH = GH*HashKey mod poly, give HK = HashKey<<1 mod poly as input 637 # Requires the input data be at least 1 byte long due to READ_PARTIAL_BLOCK 645 # Read in input data without over reading 1519 * const u8 *in, // Ciphertext input 1524 * u8 *hash_subkey, // H, the Hash sub key input. Data starts on a 16-byte boundary. 1610 * const u8 *in, // Plaintext input 1615 * u8 *hash_subkey, // H, the Hash sub key input. Data starts on a 16-byte boundary. 1700 * u8 *hash_subkey, // H, the Hash sub key input. Data starts on a 16-byte boundary. 1716 * const u8 *in, // Plaintext input [all...] |
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | aesni-intel_asm.S | 273 # Requires the input data be at least 1 byte long because of READ_PARTIAL_BLOCK 506 * To compute GH = GH*HashKey mod poly, give HK = HashKey<<1 mod poly as input 633 # Requires the input data be at least 1 byte long due to READ_PARTIAL_BLOCK 641 # Read in input data without over reading 1515 * const u8 *in, // Ciphertext input 1520 * u8 *hash_subkey, // H, the Hash sub key input. Data starts on a 16-byte boundary. 1606 * const u8 *in, // Plaintext input 1611 * u8 *hash_subkey, // H, the Hash sub key input. Data starts on a 16-byte boundary. 1696 * u8 *hash_subkey, // H, the Hash sub key input. Data starts on a 16-byte boundary. 1712 * const u8 *in, // Plaintext input [all...] |
/kernel/linux/linux-5.10/lib/zstd/ |
H A D | compress.c | 175 optimize `cPar` for a given input (`srcSize` and `dictSize`). 2350 * All blocks will be terminated, all input will be consumed. 2520 /* if input and dictionary overlap : reduce dictionary (area presumed modified by input) */ in ZSTD_compressContinue_internal() 2562 /* input becomes curr prefix */ in ZSTD_loadDictionaryContent() 3153 break; /* not enough input to get a full block : stop there, wait for more */ in ZSTD_compressStream_generic() 3223 size_t ZSTD_compressStream(ZSTD_CStream *zcs, ZSTD_outBuffer *output, ZSTD_inBuffer *input) in ZSTD_compressStream() argument 3225 size_t sizeRead = input->size - input->pos; in ZSTD_compressStream() 3228 ZSTD_compressStream_generic(zcs, (char *)(output->dst) + output->pos, &sizeWritten, (const char *)(input in ZSTD_compressStream() [all...] |
/kernel/linux/linux-6.6/drivers/pinctrl/ |
H A D | pinctrl-ingenic.c | 3786 unsigned int pin, bool input) in ingenic_pinmux_gpio_set_direction() 3793 'A' + offt, idx, input ? "in" : "out"); in ingenic_pinmux_gpio_set_direction() 3798 ingenic_shadow_config_pin(jzpc, pin, JZ4770_GPIO_PAT1, input); in ingenic_pinmux_gpio_set_direction() 3803 ingenic_config_pin(jzpc, pin, JZ4770_GPIO_PAT1, input); in ingenic_pinmux_gpio_set_direction() 3806 ingenic_config_pin(jzpc, pin, JZ4740_GPIO_DIR, !input); in ingenic_pinmux_gpio_set_direction() 3810 ingenic_config_pin(jzpc, pin, JZ4730_GPIO_GPDIR, !input); in ingenic_pinmux_gpio_set_direction() 3784 ingenic_pinmux_gpio_set_direction(struct pinctrl_dev *pctldev, struct pinctrl_gpio_range *range, unsigned int pin, bool input) ingenic_pinmux_gpio_set_direction() argument
|
/third_party/node/deps/v8/src/compiler/ |
H A D | js-native-context-specialization.cc | 136 StringRef input = matcher.Ref(broker).AsString(); in GetMaxStringLength() local 137 return input.length(); in GetMaxStringLength() 152 Node* const input = node->InputAt(0); in ReduceJSToString() local 155 HeapObjectMatcher matcher(input); in ReduceJSToString() 157 reduction = Changed(input); // JSToString(x:string) => x in ReduceJSToString() 166 NumberMatcher number_matcher(input); in ReduceJSToString() 361 // Check if the input is a known JSFunction. in ReduceJSGetSuperConstructor()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/spirv_assembly/ |
H A D | vktSpvAsmFloatControlsTests.cpp | 132 // arguments for rounding mode tests - used only when arguments are passed from input 142 // arguments of conversion operations - used only when arguments are passed from input 649 // used when arguments are passed via input (m_valueIdToFloatType[V_DENORM]). 685 // SSBO with stage input/output definitions 899 // that grab arguments from input, do need to be in this map in updateSpirvSnippets() 1066 // on input denorm being flushed or not; because of that FTZ tests can be limited in TypeTestResults() 1456 // operation to specified input type 1554 // Class storing input that will be passed to operation and expected 1575 input[0] = _input1; in OperationTestCase() 1576 input[ in OperationTestCase() 1584 ValueId input[2]; global() member in vkt::SpirVAssembly::__anon28763::OperationTestCase [all...] |
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmFloatControlsTests.cpp | 130 // arguments for rounding mode tests - used only when arguments are passed from input 140 // arguments of conversion operations - used only when arguments are passed from input 647 // used when arguments are passed via input (m_valueIdToFloatType[V_DENORM]). 683 // SSBO with stage input/output definitions 897 // that grab arguments from input, do need to be in this map in updateSpirvSnippets() 1064 // on input denorm being flushed or not; because of that FTZ tests can be limited in TypeTestResults() 1454 // operation to specified input type 1552 // Class storing input that will be passed to operation and expected 1573 input[0] = _input1; in OperationTestCase() 1574 input[ in OperationTestCase() 1582 ValueId input[2]; global() member in vkt::SpirVAssembly::__anon29912::OperationTestCase [all...] |
/third_party/node/deps/v8/src/d8/ |
H A D | d8.cc | 849 // Should not be able to fail since the input is a String. in ToSTLString() 2337 char* input = nullptr; in ReadFromStdin() local 2338 input = fgets(buffer, kBufferSize, stdin); in ReadFromStdin() 2339 if (input == nullptr) return Local<String>(); in ReadFromStdin() 3734 Local<String> input = Shell::ReadFromStdin(isolate); in RunShell() local 3735 if (input.IsEmpty()) break; in RunShell() 3736 ExecuteString(isolate, input, name, kPrintResult, kReportExceptions, in RunShell() 3904 bool ends_with(const char* input, const char* suffix) { in ends_with() argument 3905 size_t input_length = strlen(input); in ends_with() 3908 return strcmp(input in ends_with() [all...] |
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
H A D | PixelRoutine.cpp | 209 auto const &input = spirvShader->inputs[interfaceInterpolant]; in quad() local 210 if(input.Type != SpirvShader::ATTRIBTYPE_UNUSED) in quad() 212 if(input.Centroid && state.enableMultiSampling) in quad() 217 input.Flat, !input.NoPerspective); in quad() 224 input.Flat, !input.NoPerspective); in quad() 231 input.Flat, !input.NoPerspective); in quad()
|
/third_party/skia/third_party/externals/expat/expat/tests/ |
H A D | runtests.c | 775 const char *input; in START_TEST() member 799 const char *fromLim = cases[i].input + strlen(cases[i].input); in START_TEST() 803 _INTERNAL_trim_to_complete_utf8_characters(cases[i].input, &fromLim); in START_TEST() 813 for (; j < strlen(cases[i].input); j++) { in START_TEST() 814 printf("\\x%02x", (unsigned char)cases[i].input[j]); in START_TEST() 1176 /* This parses an input line longer than INIT_DATA_BUF_SIZE in START_TEST() 1178 really cheesy approach to building the input buffer, because in START_TEST() 7661 const char *const input = inputs[inputIndex]; in START_TEST() local 7669 parseResult = XML_Parse(parser, input, (in in START_TEST() [all...] |
/kernel/linux/linux-5.10/drivers/hid/ |
H A D | hid-sony.c | 36 #include <linux/input/mt.h> 488 /* Offsets relative to USB input report (0x1). Bluetooth (0x11) requires an 857 /* input (usage page for x,y axes): constant, variable, relative */ in sony_report_fixup() 860 /* input: data, variable, relative */ in sony_report_fixup() 944 struct input_dev *input_dev = hidinput->input; in dualshock4_parse_report() 961 * sending input reports in report 17. Since report 17 is undefined in dualshock4_parse_report() 1215 * controller must be ignored to avoid generating false input in sony_raw_event() 1246 hid_dbg(sc->hdev, "DualShock 4 input report's CRC check failed, received crc 0x%0x != 0x%0x\n", in sony_raw_event() 1269 * The dongle always sends input reports even when no in sony_raw_event() 1274 * input i in sony_raw_event() [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/nuvoton/ |
H A D | pinctrl-npcm7xx.c | 324 /* active-high, input, clear interrupt, enable interrupt */ in npcmgpio_irq_startup() 1686 unsigned int offset, bool input) in npcm_gpio_set_direction() 1694 input); in npcm_gpio_set_direction() 1695 if (input) in npcm_gpio_set_direction() 1684 npcm_gpio_set_direction(struct pinctrl_dev *pctldev, struct pinctrl_gpio_range *range, unsigned int offset, bool input) npcm_gpio_set_direction() argument
|
/kernel/linux/linux-6.6/drivers/pinctrl/nuvoton/ |
H A D | pinctrl-npcm7xx.c | 329 /* active-high, input, clear interrupt, enable interrupt */ in npcmgpio_irq_startup() 1693 unsigned int offset, bool input) in npcm_gpio_set_direction() 1701 input); in npcm_gpio_set_direction() 1702 if (input) in npcm_gpio_set_direction() 1691 npcm_gpio_set_direction(struct pinctrl_dev *pctldev, struct pinctrl_gpio_range *range, unsigned int offset, bool input) npcm_gpio_set_direction() argument
|