/kernel/linux/linux-6.6/drivers/gpu/drm/arm/display/komeda/d71/ |
H A D | d71_component.c | 176 struct komeda_component_output *input = &st->inputs[idx]; in to_d71_input_id() local 178 /* if input is not active, set hw input_id(0) to disable it */ in to_d71_input_id() 180 return input->component->hw_id + input->output_port; in to_d71_input_id() 565 /* Besides clearing the input ID to zero, D71 compiz also has in d71_component_disable() 566 * input enable bit in CU_INPUTx_CONTROL which need to be in d71_component_disable()
|
/kernel/linux/linux-6.6/drivers/input/touchscreen/ |
H A D | iqs7211.c | 14 #include <linux/input.h> 15 #include <linux/input/mt.h> 16 #include <linux/input/touchscreen.h>
|
/kernel/linux/linux-6.6/drivers/md/ |
H A D | dm-table.c | 515 int dm_split_args(int *argc, char ***argvp, char *input) in dm_split_args() argument 517 char *start, *end = input, *out, **argv = NULL; in dm_split_args() 522 if (!input) { in dm_split_args() 1507 * code, returned by whether the input iterate_devices_callout_fn, or
|
/kernel/linux/linux-6.6/scripts/ |
H A D | get_maintainer.pl | 1869 my $input = <STDIN>; 1870 chomp($input); 1874 my @wish = split(/[, ]+/, $input);
|
/kernel/linux/linux-6.6/sound/soc/intel/atom/ |
H A D | sst-atom-controls.c | 559 * fill_swm_input - fill in the SWM input ids given the register 564 * Use the lookup table to get the input-id and fill it in the 584 dev_dbg(cmpnt->dev, "input id: %#x, nb_inputs: %d\n", in fill_swm_input() 636 * Identify which mixer input is on and send the bitmap of the in sst_swm_mixer_event() 675 cmd.nb_inputs = fill_swm_input(cmpnt, &cmd.input[0], val); in sst_swm_mixer_event() 676 cmd.header.length = offsetof(struct sst_cmd_set_swm, input) in sst_swm_mixer_event() 678 + (cmd.nb_inputs * sizeof(cmd.input[0])); in sst_swm_mixer_event()
|
/third_party/ffmpeg/libavcodec/ |
H A D | dxv.c | 300 /* Process input until the whole texture has been filled */ in dxv_decompress_dxt1() 304 /* Copy two elements from a previous offset or from the input buffer */ in dxv_decompress_dxt1() 345 unsigned half = 512, bits = 1023, left = 1024, input, mask; in fill_ltable() local 361 input = bytestream2_get_le16(gb); in fill_ltable() 362 mask += input << lshift; in fill_ltable() 882 /* Process input until the whole texture has been filled */ in dxv_decompress_dxt5() 970 /* Copy two dwords from input */ in dxv_decompress_dxt5() 986 /* Copy two elements from a previous offset or from the input buffer */ in dxv_decompress_dxt5()
|
H A D | vorbisenc.c | 1079 const float *input = (float *) cur->extended_data[ch]; in move_audio() local 1082 memcpy(offset + sf*sf_size, input, len); in move_audio() 1083 memcpy(save + sf*sf_size, input, len); // Move samples for next frame in move_audio()
|
/third_party/curl/tests/ |
H A D | runtests.pl | 2563 my @input; 2571 push @input, $_; 2575 # preprocess the input to make conditionally disabled tests depending 2577 my @pp = prepro(0, @input);
|
/third_party/glfw/deps/ |
H A D | stb_image_write.h | 88 PNG creates output files with the same number of components as the input. 109 JPEG does ignore alpha channels in input data; quality is between 1 and 100. 183 STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); 298 STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) in stbiw_convert_wchar_to_utf8() argument 300 return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); in stbiw_convert_wchar_to_utf8() 1002 // compute adler32 on input 1538 // row >= height => use last input row 1542 // if col >= width => use pixel from last input column 1576 // row >= height => use last input row 1580 // if col >= width => use pixel from last input colum [all...] |
/third_party/astc-encoder/Source/ |
H A D | stb_image_write.h | 88 PNG creates output files with the same number of components as the input. 109 JPEG does ignore alpha channels in input data; quality is between 1 and 100. 183 STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input); 298 STBIWDEF int stbiw_convert_wchar_to_utf8(char *buffer, size_t bufferlen, const wchar_t* input) in stbiw_convert_wchar_to_utf8() argument 300 return WideCharToMultiByte(65001 /* UTF8 */, 0, input, -1, buffer, (int) bufferlen, NULL, NULL); in stbiw_convert_wchar_to_utf8() 1002 // compute adler32 on input 1538 // row >= height => use last input row 1542 // if col >= width => use pixel from last input column 1576 // row >= height => use last input row 1580 // if col >= width => use pixel from last input colum [all...] |
/third_party/googletest/googlemock/test/ |
H A D | gmock-actions_test.cc | 102 // false-y input". 761 // reference to the input. It doesn't make sense for the conversion operator to 762 // modify the input. 1208 const char* Binary(const char* input, short n) { return input + n; } // NOLINT in Binary() argument 1543 Action<const char*(short n, const char* input)> a = // NOLINT in TEST()
|
/third_party/icu/icu4c/source/test/cintltst/ |
H A D | custrtst.c | 689 * All binary Unicode string searches should behave the same for equivalent input. 1104 static const char* input = in TestUnescape() local 1117 length=u_unescape(input, buffer, UPRV_LENGTHOF(buffer)); in TestUnescape() 1124 length=u_unescape(input, NULL, UPRV_LENGTHOF(buffer)); in TestUnescape() 1235 /* test u_strHasMoreChar32Than() with NULL string (bad input) */ in TestCountChar32()
|
/third_party/json/include/nlohmann/detail/input/ |
H A D | binary_reader.hpp | 25 #include <nlohmann/detail/input/input_adapters.hpp> 26 #include <nlohmann/detail/input/json_sax.hpp> 27 #include <nlohmann/detail/input/lexer.hpp> 82 @param[in] adapter input adapter to read from 99 @param[in] strict whether to expect the input to be consumed completed 152 exception_message(input_format, concat("expected end of input; last byte: 0x", get_token_string()), "value"), nullptr)); in sax_parse() 187 @brief Parses a C-style string from the BSON input. 213 input. 236 @brief Parses a byte array input of length @a len from the BSON input [all...] |
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | input.py | 447 # as found in the input file into that copy, and then hook up the 560 """Class to keep track of state when processing input files in parallel. 667 # the input is something like "<(foo <(bar)) blah", then it would 759 def ExpandVariables(input, phase, variables, build_file): 773 input_str = str(input) 854 # expansion in the input string. 1083 if output == input: 2663 # ("sources_excluded"). The exclude_key list is input and it was already 2789 "rule_sources must not exist in input, target %s rule %s" 2999 # used as keys to the data dict and for references between input file [all...] |
/third_party/nghttp2/src/ |
H A D | shrpx_http2_session.cc | 1579 auto input = downstream->get_request_buf(); in send_data_callback() local 1590 input->remove(*wb, length); in send_data_callback() 1594 if (input->rleft() == 0) { in send_data_callback()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | input.py | 447 # as found in the input file into that copy, and then hook up the 560 """Class to keep track of state when processing input files in parallel. 667 # the input is something like "<(foo <(bar)) blah", then it would 759 def ExpandVariables(input, phase, variables, build_file): 773 input_str = str(input) 854 # expansion in the input string. 1073 if output == input: 2641 # ("sources_excluded"). The exclude_key list is input and it was already 2767 "rule_sources must not exist in input, target %s rule %s" 2977 # used as keys to the data dict and for references between input file [all...] |
/third_party/node/deps/v8/src/builtins/ |
H A D | builtins-regexp-gen.cc | 96 TNode<String> input, TNode<JSRegExp> regexp, TNode<Number> last_index, in AllocateRegExpResult() 152 StoreObjectField(result, JSRegExpResult::kInputOffset, input); in AllocateRegExpResult() 158 StoreObjectField(result, JSRegExpResult::kRegexpInputOffset, input); in AllocateRegExpResult() 94 AllocateRegExpResult( TNode<Context> context, TNode<Smi> length, TNode<Smi> index, TNode<String> input, TNode<JSRegExp> regexp, TNode<Number> last_index, TNode<BoolT> has_indices, TNode<FixedArray>* elements_out) AllocateRegExpResult() argument
|
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp.cc | 92 static bool Compile(Isolate* isolate, Zone* zone, RegExpCompileData* input, 112 bool RegExp::VerifySyntax(Zone* zone, uintptr_t stack_limit, const CharT* input, in VerifySyntax() argument 118 zone, stack_limit, input, input_length, flags, &data, no_gc); in VerifySyntax()
|
/third_party/mesa3d/src/gallium/drivers/nouveau/nvc0/ |
H A D | nvc0_query_hw_sm.c | 2545 uint32_t input[3]; in nvc0_hw_sm_end_query() local 2581 /* upload input data for the compute shader which reads MP counters */ in nvc0_hw_sm_end_query() 2590 info.input = input; in nvc0_hw_sm_end_query()
|
/third_party/node/deps/openssl/openssl/crypto/poly1305/asm/ |
H A D | poly1305-armv8.pl | 133 ldp $t0,$t1,[$inp],#16 // load input 139 adds $h0,$h0,$t0 // accumulate input 327 ldp $d0,$d1,[$inp],#16 // load input 342 adds $h0,$h0,$d0 // accumulate input 381 ldp $d0,$d1,[$inp],#16 // load input 388 adds $h0,$h0,$d0 // accumulate input
|
/third_party/node/deps/openssl/openssl/crypto/chacha/asm/ |
H A D | chacha-c64xplus.pl | 24 # dependent on input length. This module on the other hand is free 71 || [A0] MVK 128,$STEP ; 2 * input block size 95 [A1] MVK 64,$STEP ; input block size 780 XOR @X[0],@DAT[0],@DAT[0] ; xor with input
|
/third_party/python/Lib/ |
H A D | _pyio.py | 155 * On input, if newline is None, universal newlines mode is 156 enabled. Lines in the input can end in '\n', '\r', or '\r\n', and 160 the other legal values, input lines are only terminated by the given 1915 def decode(self, input, final=False): 1916 # decode input (with the eventual \r from a previous pass) 1918 output = input 1920 output = self.decoder.decode(input, final=final) 1998 enabled. With this enabled, on input, the lines endings '\n', '\r', 2087 # and next_input is the chunk of input bytes that comes next after the 2091 # - "bytes_..." for integer variables that count input byte [all...] |
/third_party/openssl/crypto/chacha/asm/ |
H A D | chacha-c64xplus.pl | 24 # dependent on input length. This module on the other hand is free 71 || [A0] MVK 128,$STEP ; 2 * input block size 95 [A1] MVK 64,$STEP ; input block size 780 XOR @X[0],@DAT[0],@DAT[0] ; xor with input
|
/third_party/openssl/crypto/poly1305/asm/ |
H A D | poly1305-armv8.pl | 133 ldp $t0,$t1,[$inp],#16 // load input 139 adds $h0,$h0,$t0 // accumulate input 327 ldp $d0,$d1,[$inp],#16 // load input 342 adds $h0,$h0,$d0 // accumulate input 381 ldp $d0,$d1,[$inp],#16 // load input 388 adds $h0,$h0,$d0 // accumulate input
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | glslang_lex_autogen.cpp | 205 /* Size of default input buffer. */ 260 /* Return all but the first "n" matched characters back to the input stream. */ 280 char *yy_ch_buf; /* input buffer */ 281 char *yy_buf_pos; /* current position in input buffer */ 283 /* Size of input buffer in bytes, not including room for EOB 299 /* Whether this is an "interactive" input source; if so, and 300 * if we're using stdio for input, then we want to use getc() 301 * instead of fread(), to make sure we stop fetching input after 315 /* Whether to try to fill the input buffer when we reach the 326 * shouldn't try reading from the input sourc [all...] |