/third_party/libdrm/tests/tegra/ |
H A D | vic40.c | 89 struct vic_image *input) in vic40_blit() 131 slot->SourceRectRight = (input->width - 1) << 16; in vic40_blit() 133 slot->SourceRectBottom = (input->height - 1) << 16; in vic40_blit() 141 surface->SlotPixelFormat = input->format; in vic40_blit() 142 surface->SlotBlkKind = input->kind; in vic40_blit() 145 surface->SlotSurfaceWidth = input->width - 1; in vic40_blit() 146 surface->SlotSurfaceHeight = input->height - 1; in vic40_blit() 147 surface->SlotLumaWidth = input->stride - 1; in vic40_blit() 148 surface->SlotLumaHeight = input->height - 1; in vic40_blit() 158 struct vic_image *input) in vic40_flip() 88 vic40_blit(struct vic *v, struct vic_image *output, struct vic_image *input) vic40_blit() argument 157 vic40_flip(struct vic *v, struct vic_image *output, struct vic_image *input) vic40_flip() argument [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | dead-code-elimination.cc | 40 for (Node* input : node->inputs()) { in FindDeadInput() 41 if (NoReturn(input)) return input; in FindDeadInput() 93 Node* const input = inputs[i]; in ReduceEnd() local 95 if (input->opcode() == IrOpcode::kDead) continue; in ReduceEnd() 97 if (i != live_input_count) node->ReplaceInput(live_input_count, input); in ReduceEnd() 117 // same time. We consider {Loop}s dead even if only the first control input in ReduceLoopOrMerge() 123 Node* const input = inputs[i]; in ReduceLoopOrMerge() local 125 if (input->opcode() == IrOpcode::kDead) continue; in ReduceLoopOrMerge() 128 node->ReplaceInput(live_input_count, input); in ReduceLoopOrMerge() 225 Node* input = NodeProperties::GetValueInput(node, i); ReducePhi() local [all...] |
H A D | wasm-compiler.h | 287 Node* Unop(wasm::WasmOpcode opcode, Node* input, 289 Node* MemoryGrow(Node* input); 509 Node* I31New(Node* input); 510 Node* I31GetS(Node* input); 511 Node* I31GetU(Node* input); 641 Node* BuildIntConvertFloat(Node* input, wasm::WasmCodePosition position, 643 Node* BuildI32Ctz(Node* input); 644 Node* BuildI32Popcnt(Node* input); 645 Node* BuildI64Ctz(Node* input); 646 Node* BuildI64Popcnt(Node* input); [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | double-conversion-strtod.cpp | 125 // The input buffer has been trimmed. Therefore the last digit must be in CutToMaxSignificantDigits() 137 // If possible the input-buffer is reused, but if the buffer needs to be 138 // modified (due to cutting), then the input needs to be copied into the 220 // The trimmed input fits into a double. in DoubleStrtod() 287 DiyFp input; 289 ReadDiyFp(buffer, &input, &remaining_decimals); 290 // Since we may have dropped some digits the input is not accurate. 301 int old_e = input.e(); 302 input.Normalize(); 303 error <<= old_e - input [all...] |
/third_party/python/Lib/test/ |
H A D | test_readline.py | 153 input() 230 print("result", ascii(input())) 234 input = b"\x01" # Ctrl-A, expands to "|t\xEB[after]" 235 input += b"\x02" * len("[after]") # Move cursor back 236 input += b"\t\t" # Display possible completions 237 input += b"x\t" # Complete "t\xEBx" -> "t\xEBxt" 238 input += b"\r" 239 output = run_pty(script, input) 291 input() 299 run_pty(script, input [all...] |
/third_party/alsa-lib/include/ |
H A D | input.h | 2 * \file include/input.h 40 * The input functions present an interface similar to the stdio functions 41 * on top of different underlying input sources. 43 * The #snd_config_load function uses such an input handle to be able to 51 * \brief Internal structure for an input object. 54 * input object. Applications don't access its contents directly. 69 int snd_input_close(snd_input_t *input); 70 int snd_input_scanf(snd_input_t *input, const char *format, ...) 75 char *snd_input_gets(snd_input_t *input, char *str, size_t size); 76 int snd_input_getc(snd_input_t *input); [all...] |
/third_party/node/benchmark/http/ |
H A D | check_invalid_header_char.js | 52 input: inputs.concat(Object.keys(groupedInputs)), 56 function main({ n, input }) { 57 let inputs = [input]; 58 if (Object.hasOwn(groupedInputs, input)) { 59 inputs = groupedInputs[input];
|
/third_party/node/benchmark/querystring/ |
H A D | querystring-parse.js | 12 const input = inputs[type]; 18 querystring.parse(input, '&&&&&&&&&&'); 22 querystring.parse(input, '&&&&&&&&&&'); 26 querystring.parse(input); 30 querystring.parse(input);
|
/third_party/skia/third_party/externals/spirv-tools/test/fuzzers/ |
H A D | spvtools_binary_parser_fuzzer.cpp | 32 std::vector<uint32_t> input; in LLVMFuzzerTestOneInput() local 33 input.resize(size >> 2); in LLVMFuzzerTestOneInput() 37 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) | in LLVMFuzzerTestOneInput() 41 spvBinaryParse(context, nullptr, input.data(), input.size(), nullptr, nullptr, in LLVMFuzzerTestOneInput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/fuzzers/ |
H A D | spvtools_binary_parser_fuzzer.cpp | 32 std::vector<uint32_t> input; in LLVMFuzzerTestOneInput() local 33 input.resize(size >> 2); in LLVMFuzzerTestOneInput() 37 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) | in LLVMFuzzerTestOneInput() 41 spvBinaryParse(context, nullptr, input.data(), input.size(), nullptr, nullptr, in LLVMFuzzerTestOneInput()
|
/third_party/spirv-tools/test/fuzzers/ |
H A D | spvtools_binary_parser_fuzzer.cpp | 32 std::vector<uint32_t> input; in LLVMFuzzerTestOneInput() local 33 input.resize(size >> 2); in LLVMFuzzerTestOneInput() 37 input[count++] = data[i] | (data[i + 1] << 8) | (data[i + 2] << 16) | in LLVMFuzzerTestOneInput() 41 spvBinaryParse(context, nullptr, input.data(), input.size(), nullptr, nullptr, in LLVMFuzzerTestOneInput()
|
/third_party/alsa-lib/test/lsb/ |
H A D | config.c | 79 snd_input_t *input; in test_load() local 93 ALSA_CHECK(snd_input_buffer_open(&input, config_text1, strlen(config_text1))); in test_load() 94 ALSA_CHECK(snd_config_load(loaded, input)); in test_load() 95 ALSA_CHECK(snd_input_close(input)); in test_load() 103 ALSA_CHECK(snd_input_buffer_open(&input, config_text2, strlen(config_text2))); in test_load() 104 ALSA_CHECK(snd_config_load(loaded, input)); in test_load() 105 ALSA_CHECK(snd_input_close(input)); in test_load() 120 snd_input_t *input; in test_save() local 125 ALSA_CHECK(snd_input_buffer_open(&input, text, strlen(text))); in test_save() 127 ALSA_CHECK(snd_config_load(orig, input)); in test_save() 164 snd_input_t *input; test_search() local 197 snd_input_t *input; test_searchv() local [all...] |
/third_party/node/lib/internal/repl/ |
H A D | utils.js | 62 // If the error is that we've unexpectedly ended the input, 63 // then let the user try to recover by adding more input. 77 // Determine if the point of any error raised is at the end of the input. 98 constructor(options, input, startPos) { 99 super(options, input, startPos); 114 const token = StringPrototypeSlice(this.input, 134 // Odd case: the underlying JS engine (V8, Chakra) rejected this input 297 // This returns a code preview for arbitrary input code. 298 function getInputPreview(input, callback) { 301 if (StringPrototypeStartsWith(input, '{') [all...] |
/third_party/skia/src/effects/imagefilters/ |
H A D | SkBlurImageFilter.cpp | 39 sk_sp<SkImageFilter> input, const SkRect* cropRect) in SkBlurImageFilter() 40 : INHERITED(&input, 1, cropRect) in SkBlurImageFilter() 59 const sk_sp<SkSpecialImage> &input, 72 SkScalar sigmaX, SkScalar sigmaY, SkTileMode tileMode, sk_sp<SkImageFilter> input, in Blur() 75 return input; in Blur() 78 new SkBlurImageFilter(sigmaX, sigmaY, tileMode, input, cropRect)); in Blur() 386 // Given an expanded input pixel, move the window ahead using the leadingEdge value. 628 // Given an expanded input pixel, move the window ahead using the leadingEdge value. 691 const SkImageFilter_Base::Context& ctx, const sk_sp<SkSpecialImage> &input, in copy_image_with_bounds() 694 if (!input in copy_image_with_bounds() 38 SkBlurImageFilter(SkScalar sigmaX, SkScalar sigmaY, SkTileMode tileMode, sk_sp<SkImageFilter> input, const SkRect* cropRect) SkBlurImageFilter() argument 71 Blur( SkScalar sigmaX, SkScalar sigmaY, SkTileMode tileMode, sk_sp<SkImageFilter> input, const CropRect& cropRect) Blur() argument 690 copy_image_with_bounds( const SkImageFilter_Base::Context& ctx, const sk_sp<SkSpecialImage> &input, SkIRect srcBounds, SkIRect dstBounds) copy_image_with_bounds() argument 756 cpu_blur( const SkImageFilter_Base::Context& ctx, SkVector sigma, const sk_sp<SkSpecialImage> &input, SkIRect srcBounds, SkIRect dstBounds) cpu_blur() argument 960 gpuFilter( const Context& ctx, SkVector sigma, const sk_sp<SkSpecialImage> &input, SkIRect inputBounds, SkIRect dstBounds, SkIPoint inputOffset, SkIPoint* offset) const gpuFilter() argument [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/impl/number/ |
H A D | DecimalQuantity_ByteArrayBCD.java | 27 public DecimalQuantity_ByteArrayBCD(long input) { in DecimalQuantity_ByteArrayBCD() argument 28 setToLong(input); in DecimalQuantity_ByteArrayBCD() 31 public DecimalQuantity_ByteArrayBCD(int input) { in DecimalQuantity_ByteArrayBCD() argument 32 setToInt(input); in DecimalQuantity_ByteArrayBCD() 35 public DecimalQuantity_ByteArrayBCD(double input) { in DecimalQuantity_ByteArrayBCD() argument 36 setToDouble(input); in DecimalQuantity_ByteArrayBCD() 39 public DecimalQuantity_ByteArrayBCD(BigInteger input) { in DecimalQuantity_ByteArrayBCD() argument 40 setToBigInteger(input); in DecimalQuantity_ByteArrayBCD() 43 public DecimalQuantity_ByteArrayBCD(BigDecimal input) { in DecimalQuantity_ByteArrayBCD() argument 44 setToBigDecimal(input); in DecimalQuantity_ByteArrayBCD() [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/impl/number/ |
H A D | DecimalQuantity_ByteArrayBCD.java | 30 public DecimalQuantity_ByteArrayBCD(long input) { in DecimalQuantity_ByteArrayBCD() argument 31 setToLong(input); in DecimalQuantity_ByteArrayBCD() 34 public DecimalQuantity_ByteArrayBCD(int input) { in DecimalQuantity_ByteArrayBCD() argument 35 setToInt(input); in DecimalQuantity_ByteArrayBCD() 38 public DecimalQuantity_ByteArrayBCD(double input) { in DecimalQuantity_ByteArrayBCD() argument 39 setToDouble(input); in DecimalQuantity_ByteArrayBCD() 42 public DecimalQuantity_ByteArrayBCD(BigInteger input) { in DecimalQuantity_ByteArrayBCD() argument 43 setToBigInteger(input); in DecimalQuantity_ByteArrayBCD() 46 public DecimalQuantity_ByteArrayBCD(BigDecimal input) { in DecimalQuantity_ByteArrayBCD() argument 47 setToBigDecimal(input); in DecimalQuantity_ByteArrayBCD() [all...] |
/third_party/python/Lib/encodings/ |
H A D | punycode.py | 200 def encode(self, input, errors='strict'): 201 res = punycode_encode(input) 202 return res, len(input) 204 def decode(self, input, errors='strict'): 207 res = punycode_decode(input, errors) 208 return res, len(input) 211 def encode(self, input, final=False): 212 return punycode_encode(input) 215 def decode(self, input, final=False): 218 return punycode_decode(input, sel [all...] |
/third_party/ffmpeg/tools/python/ |
H A D | convert_from_tensorflow.py | 260 node0 = self.name_node_dict[node.input[0]] 261 node1 = self.name_node_dict[node.input[1]] 264 input_name = node.input[1] 267 input_name = node.input[0] 299 input_operand_index = self.add_operand(node.input[0], Operand.IOTYPE_INPUT) 310 pnode = self.name_node_dict[node.input[1]] 315 input_operand_index = self.add_operand(node.input[0], Operand.IOTYPE_INPUT) 323 ynode = self.name_node_dict[node.input[1]] 328 input_operand_index = self.add_operand(node.input[0], Operand.IOTYPE_INPUT) 336 i0_node = self.name_node_dict[node.input[ [all...] |
/third_party/ffmpeg/libavfilter/tests/ |
H A D | dnn-layer-maximum.c | 33 float input[1*1*2*3] = { in test() local 40 operands[0].data = input; in test() 51 for (int i = 0; i < sizeof(input) / sizeof(float); i++) { in test() 52 float expected_output = input[i] > params.val.y ? input[i] : params.val.y; in test()
|
/third_party/ffmpeg/tests/dnn/ |
H A D | dnn-layer-maximum-test.c | 33 float input[1*1*2*3] = { in test() local 40 operands[0].data = input; in test() 51 for (int i = 0; i < sizeof(input) / sizeof(float); i++) { in test() 52 float expected_output = input[i] > params.val.y ? input[i] : params.val.y; in test()
|
/third_party/PyYAML/tests/lib/ |
H A D | test_sort_keys.py | 7 input = file.read().decode('utf-8') 10 data = yaml.load(input, Loader=yaml.FullLoader) 16 print(input) 23 assert dump_unsorted == input 24 assert dump_unsorted_safe == input
|
/third_party/skia/third_party/externals/harfbuzz/test/api/ |
H A D | test-subset-drop-tables.c | 40 hb_subset_input_t *input = hb_subset_test_create_input (codepoints); in test_subset_drop_tables() local 41 hb_set_add (hb_subset_input_set (input, HB_SUBSET_SETS_DROP_TABLE_TAG), HB_TAG ('h', 'd', 'm', 'x')); in test_subset_drop_tables() 42 hb_set_add (hb_subset_input_set (input, HB_SUBSET_SETS_DROP_TABLE_TAG), HB_TAG ('h', 'm', 't', 'x')); in test_subset_drop_tables() 45 hb_face_t* subset = hb_subset_or_fail (face, input); in test_subset_drop_tables() 59 hb_subset_input_destroy (input); in test_subset_drop_tables()
|
/third_party/mesa3d/src/asahi/lib/ |
H A D | wrap.c | 49 wrap_Method(mach_port_t connection, uint32_t selector, const uint64_t* input, in wrap_Method() argument 61 return IOConnectCallMethod(connection, selector, input, inputCnt, in wrap_Method() 69 assert((input != NULL) == (inputCnt != 0)); in wrap_Method() 77 assert(input == NULL && output == NULL && outputStruct == NULL); in wrap_Method() 135 connection, input[0], inputStruct); in wrap_Method() 154 printf(" %llx", input[u]); in wrap_Method() 168 IOConnectCallMethod(connection, selector, input, inputCnt, inputStruct, in wrap_Method() 180 uint64_t *inp = (uint64_t *) input; in wrap_Method() 247 .handle = input[0] in wrap_Method() 285 uint32_t referenceCnt, const uint64_t *input, in wrap_AsyncMethod() 283 wrap_AsyncMethod(mach_port_t connection, uint32_t selector, mach_port_t wakePort, uint64_t *reference, uint32_t referenceCnt, const uint64_t *input, uint32_t inputCnt, const void *inputStruct, size_t inputStructCnt, uint64_t *output, uint32_t *outputCnt, void *outputStruct, size_t *outputStructCntP) wrap_AsyncMethod() argument 367 wrap_ScalarMethod(mach_port_t connection, uint32_t selector, const uint64_t *input, uint32_t inputCnt, uint64_t *output, uint32_t *outputCnt) wrap_ScalarMethod() argument 376 wrap_AsyncScalarMethod(mach_port_t connection, uint32_t selector, mach_port_t wakePort, uint64_t *reference, uint32_t referenceCnt, const uint64_t *input, uint32_t inputCnt, uint64_t *output, uint32_t *outputCnt) wrap_AsyncScalarMethod() argument [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | numbertest_parse.cpp | 213 const char16_t* input; in testSeriesMatcher() member 231 UnicodeString input(cas.input); in testSeriesMatcher() 233 StringSegment segment(input, false); in testSeriesMatcher() 238 assertEquals("'" + input + "'", cas.expectedOffset, actualOffset); in testSeriesMatcher() 239 assertEquals("'" + input + "'", cas.expectedMaybeMore, actualMaybeMore); in testSeriesMatcher() 266 const char16_t* input; in testCombinedCurrencyMatcher() member 279 UnicodeString input(cas.input); in testCombinedCurrencyMatcher() 282 StringSegment segment(input, fals in testCombinedCurrencyMatcher() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | vf_tonemap_opencl.c | 206 av_log(avctx, AV_LOG_ERROR, "unsupported input colorspace %d (%s)\n", in tonemap_opencl_init() 305 AVFrame *output, AVFrame *input, float peak) { in launch_kernel() 313 CL_SET_KERNEL_ARG(kernel, 1, cl_mem, &input->data[0]); in launch_kernel() 315 CL_SET_KERNEL_ARG(kernel, 3, cl_mem, &input->data[1]); in launch_kernel() 336 static int tonemap_opencl_filter_frame(AVFilterLink *inlink, AVFrame *input) in tonemap_opencl_filter_frame() argument 347 (AVHWFramesContext*)input->hw_frames_ctx->data; in tonemap_opencl_filter_frame() 349 av_log(ctx, AV_LOG_DEBUG, "Filter input: %s, %ux%u (%"PRId64").\n", in tonemap_opencl_filter_frame() 350 av_get_pix_fmt_name(input->format), in tonemap_opencl_filter_frame() 351 input->width, input in tonemap_opencl_filter_frame() 304 launch_kernel(AVFilterContext *avctx, cl_kernel kernel, AVFrame *output, AVFrame *input, float peak) launch_kernel() argument [all...] |