/third_party/node/test/parallel/ |
H A D | test-querystring.js | 28 const qs = require('querystring'); 124 // [wonkyObj, qs, canonicalObj] 184 assert.strictEqual(qs.parse('id=918854443121279438895193').id, 211 // Test that the canonical qs is parsed properly. 213 check(qs.parse(testCase[0]), testCase[2], testCase[0]); 218 check(qs.parse(testCase[0], ';', ':'), testCase[2], testCase[0]); 223 check(qs.parse(testCase[1]), testCase[2], testCase[1]); 227 assert.deepStrictEqual(qs.stringify(testCase[1], '&', '='), testCase[0]); 230 // Test the nested qs-in-qs cas [all...] |
H A D | test-querystring-multichar-separator.js | 4 const qs = require('querystring'); 15 check(qs.parse('foo=>bar&&bar=>baz', '&&', '=>'), 18 check(qs.stringify({ foo: 'bar', bar: 'baz' }, '&&', '=>'), 21 check(qs.parse('foo==>bar, bar==>baz', ', ', '==>'), 24 check(qs.stringify({ foo: 'bar', bar: 'baz' }, ', ', '==>'),
|
/third_party/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_quad_depth_test.c | 537 depth_test_quad(struct quad_stage *qs, in depth_test_quad() argument 541 struct softpipe_context *softpipe = qs->softpipe; in depth_test_quad() 618 depth_stencil_test_quad(struct quad_stage *qs, in depth_stencil_test_quad() argument 622 struct softpipe_context *softpipe = qs->softpipe; in depth_stencil_test_quad() 662 depth_test_quad(qs, data, quad); /* quad->mask is updated */ in depth_stencil_test_quad() 685 alpha_test_quads_##FUNC( struct quad_stage *qs, \ 689 const float ref = qs->softpipe->depth_stencil->alpha_ref_value; \ 724 alpha_test_quads(struct quad_stage *qs, in alpha_test_quads() argument 728 switch (qs->softpipe->depth_stencil->alpha_func) { in alpha_test_quads() 730 return alpha_test_quads_LESS( qs, quad in alpha_test_quads() 762 depth_bounds_test_quads(struct quad_stage *qs, struct quad_header *quads[], unsigned nr, struct depth_data *data) depth_bounds_test_quads() argument 846 depth_test_quads_fallback(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) depth_test_quads_fallback() argument 975 depth_noop(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) depth_noop() argument 985 choose_depth_test(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) choose_depth_test() argument 1073 depth_test_begin(struct quad_stage *qs) depth_test_begin() argument 1081 depth_test_destroy(struct quad_stage *qs) depth_test_destroy() argument [all...] |
H A D | sp_quad_fs.c | 63 shade_quad(struct quad_stage *qs, struct quad_header *quad) in shade_quad() argument 65 struct softpipe_context *softpipe = qs->softpipe; in shade_quad() 81 coverage_quad(struct quad_stage *qs, struct quad_header *quad) in coverage_quad() argument 83 struct softpipe_context *softpipe = qs->softpipe; in coverage_quad() 104 shade_quads(struct quad_stage *qs, in shade_quads() argument 108 struct softpipe_context *softpipe = qs->softpipe; in shade_quads() 128 if (!shade_quad(qs, quads[i]) && i > 0) in shade_quads() 132 coverage_quad( qs, quads[i] ); in shade_quads() 138 qs->next->run(qs in shade_quads() 146 shade_begin(struct quad_stage *qs) shade_begin() argument 153 shade_destroy(struct quad_stage *qs) shade_destroy() argument [all...] |
H A D | sp_quad_blend.c | 150 logicop_quad(struct quad_stage *qs, in logicop_quad() argument 154 struct softpipe_context *softpipe = qs->softpipe; in logicop_quad() 264 blend_quad(struct quad_stage *qs, in blend_quad() argument 273 struct softpipe_context *softpipe = qs->softpipe; in blend_quad() 920 blend_fallback(struct quad_stage *qs, in blend_fallback() argument 924 const struct blend_quad_stage *bqs = blend_quad_stage(qs); in blend_fallback() 925 struct softpipe_context *softpipe = qs->softpipe; in blend_fallback() 991 logicop_quad( qs, quadColor, dest ); in blend_fallback() 995 blend_quad(qs, quadColor, quadColor2, dest, blend_color, blend_buf); in blend_fallback() 1028 blend_single_add_src_alpha_inv_src_alpha(struct quad_stage *qs, in blend_single_add_src_alpha_inv_src_alpha() argument 1105 blend_single_add_one_one(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) blend_single_add_one_one() argument 1174 single_output_color(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) single_output_color() argument 1210 blend_noop(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) blend_noop() argument 1218 choose_blend_quad(struct quad_stage *qs, struct quad_header *quads[], unsigned nr) choose_blend_quad() argument 1288 blend_begin(struct quad_stage *qs) blend_begin() argument 1294 blend_destroy(struct quad_stage *qs) blend_destroy() argument [all...] |
H A D | sp_quad_pipe.h | 49 void (*begin)(struct quad_stage *qs); 52 void (*run)(struct quad_stage *qs, struct quad_header *quad[], unsigned nr); 54 void (*destroy)(struct quad_stage *qs);
|
H A D | sp_quad_depth_test_tmp.h | 49 NAME(struct quad_stage *qs, in NAME() argument 74 tile = sp_get_cached_tile(qs->softpipe->zsbuf_cache, ix, iy, quads[0]->input.layer); in NAME() 141 qs->next->run(qs->next, quads, pass); in NAME()
|
/third_party/python/Lib/ |
H A D | cgi.py | 177 qs = fp.read(clength).decode(encoding) 179 qs = '' # Unknown content-type 181 if qs: qs = qs + '&' 182 qs = qs + environ['QUERY_STRING'] 184 if qs: qs = qs [all...] |
/third_party/node/lib/ |
H A D | querystring.js | 309 * @param {string} qs 318 function parse(qs, sep, eq, options) { 321 if (typeof qs !== 'string' || qs.length === 0) { 356 for (let i = 0; i < qs.length; ++i) { 357 const code = StringPrototypeCharCodeAt(qs, i); 368 key += StringPrototypeSlice(qs, lastPos, end); 378 value += StringPrototypeSlice(qs, lastPos, end); 400 key += StringPrototypeSlice(qs, lastPos, end); 426 key += StringPrototypeSlice(qs, lastPo [all...] |
/third_party/python/Modules/_decimal/libmpdec/examples/ |
H A D | divmod.c | 41 char *qs, *rs; in main() local 66 qs = mpd_to_sci(q, 1); in main() 70 printf("%s %s %s\n", qs, rs, status_str); in main() 76 mpd_free(qs); in main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | vc1_pred.h | 39 static av_always_inline int scale_mv(int value, int bfrac, int inv, int qs) in scale_mv() argument 46 if (!qs) in scale_mv() 52 if (!qs) in scale_mv()
|
H A D | qsv.c | 378 static int ff_qsv_set_display_handle(AVCodecContext *avctx, QSVSession *qs) in ff_qsv_set_display_handle() argument 387 ret = av_hwdevice_ctx_create(&qs->va_device_ref, AV_HWDEVICE_TYPE_VAAPI, NULL, child_device_opts, 0); in ff_qsv_set_display_handle() 393 qs->va_device_ctx = (AVHWDeviceContext*)qs->va_device_ref->data; in ff_qsv_set_display_handle() 394 hwctx = qs->va_device_ctx->hwctx; in ff_qsv_set_display_handle() 396 ret = MFXVideoCORE_SetHandle(qs->session, in ff_qsv_set_display_handle() 407 int ff_qsv_init_internal_session(AVCodecContext *avctx, QSVSession *qs, in ff_qsv_init_internal_session() argument 424 ret = MFXInitEx(init_par, &qs->session); in ff_qsv_init_internal_session() 430 ret = ff_qsv_set_display_handle(avctx, qs); in ff_qsv_init_internal_session() 435 ret = qsv_load_plugins(qs in ff_qsv_init_internal_session() 851 ff_qsv_close_internal_session(QSVSession *qs) ff_qsv_close_internal_session() argument [all...] |
H A D | qsv_internal.h | 136 int ff_qsv_init_internal_session(AVCodecContext *avctx, QSVSession *qs, 139 int ff_qsv_close_internal_session(QSVSession *qs);
|
H A D | diracdsp.c | 196 const int qf, const int qs, int tot_v, int tot_h) \ 203 if (c < 0) c = -((-(unsigned)c*qf + qs) >> 2); \ 204 else if(c > 0) c = (( (unsigned)c*qf + qs) >> 2); \
|
H A D | diracdsp.h | 51 void (*dequant_subband[4])(uint8_t *src, uint8_t *dst, ptrdiff_t stride, const int qf, const int qs, int tot_v, int tot_h);
|
/third_party/python/Lib/test/test_email/ |
H A D | test__header_value_parser.py | 734 qs = self._test_get_x(parser.get_quoted_string, 736 self.assertEqual(qs.token_type, 'quoted-string') 737 self.assertEqual(qs.quoted_value, '"bob"') 738 self.assertEqual(qs.content, 'bob') 741 qs = self._test_get_x(parser.get_quoted_string, 743 self.assertEqual(qs.quoted_value, ' "bob" ') 744 self.assertEqual(qs.content, 'bob') 747 qs = self._test_get_x(parser.get_quoted_string, 749 self.assertEqual(qs[0][1].content, 'foo') 750 self.assertEqual(qs[ [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/number/ |
H A D | DecimalQuantityTest.java | 133 List<DecimalQuantity> qs = new ArrayList<>(); in testDecimalQuantity() 135 qs.add(new DecimalQuantity_SimpleStorage(d)); in testDecimalQuantity() 137 qs.add(new DecimalQuantity_64BitBCD(d)); in testDecimalQuantity() 138 qs.add(new DecimalQuantity_ByteArrayBCD(d)); in testDecimalQuantity() 139 qs.add(new DecimalQuantity_DualStorageBCD(d)); in testDecimalQuantity() 143 qs.add(new DecimalQuantity_SimpleStorage(dv)); in testDecimalQuantity() 145 qs.add(new DecimalQuantity_64BitBCD(dv)); in testDecimalQuantity() 146 qs.add(new DecimalQuantity_ByteArrayBCD(dv)); in testDecimalQuantity() 147 qs.add(new DecimalQuantity_DualStorageBCD(dv)); in testDecimalQuantity() 152 qs in testDecimalQuantity() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/number/ |
H A D | DecimalQuantityTest.java | 130 List<DecimalQuantity> qs = new ArrayList<>(); in testDecimalQuantity() 132 qs.add(new DecimalQuantity_SimpleStorage(d)); in testDecimalQuantity() 134 qs.add(new DecimalQuantity_64BitBCD(d)); in testDecimalQuantity() 135 qs.add(new DecimalQuantity_ByteArrayBCD(d)); in testDecimalQuantity() 136 qs.add(new DecimalQuantity_DualStorageBCD(d)); in testDecimalQuantity() 140 qs.add(new DecimalQuantity_SimpleStorage(dv)); in testDecimalQuantity() 142 qs.add(new DecimalQuantity_64BitBCD(dv)); in testDecimalQuantity() 143 qs.add(new DecimalQuantity_ByteArrayBCD(dv)); in testDecimalQuantity() 144 qs.add(new DecimalQuantity_DualStorageBCD(dv)); in testDecimalQuantity() 149 qs in testDecimalQuantity() [all...] |
/third_party/python/Lib/urllib/ |
H A D | parse.py | 687 def parse_qs(qs, keep_blank_values=False, strict_parsing=False, 693 qs: percent-encoded query string to be parsed 718 pairs = parse_qsl(qs, keep_blank_values, strict_parsing, 729 def parse_qsl(qs, keep_blank_values=False, strict_parsing=False, 735 qs: percent-encoded query string to be parsed 758 qs, _coerce_result = _coerce_args(qs) 768 num_fields = 1 + qs.count(separator) if qs else 0 773 query_args = qs [all...] |
/third_party/icu/icu4c/source/test/perf/howExpensiveIs/ |
H A D | sieve.cpp | 108 double qs(double *times, int n, double *q1, double *q2, double *q3) { in qs() function 121 double iqr = qs(times,n,&q1,&q2,&q3); in uprv_getMeanTime() 152 double iqr = qs(times,n,&q1,&q2,&q3); in uprv_getMeanTime()
|
/third_party/skia/third_party/externals/harfbuzz/util/ |
H A D | ansi-print.hh | 344 unsigned int qs = 0; 349 qs += quad_i[i][j]; 351 qs += quad[i][j]; 352 if (qs < score) { 368 score = qs;
|
/third_party/mesa3d/.gitlab-ci/common/ |
H A D | init-stage2.sh | 57 grep -qs '\bvmx\b' /proc/cpuinfo && KVM_KERNEL_MODULE=kvm_intel || { 58 grep -qs '\bsvm\b' /proc/cpuinfo && KVM_KERNEL_MODULE=kvm_amd
|
/third_party/node/lib/internal/ |
H A D | url.js | 1080 function parseParams(qs) { 1086 let i = qs[0] === '?' ? 1 : 0; 1089 for (; i < qs.length; ++i) { 1090 const code = StringPrototypeCharCodeAt(qs, i); 1101 buf += qs.slice(lastPos, i); 1122 buf += qs.slice(lastPos, i); 1138 buf += StringPrototypeSlice(qs, lastPos, i); 1165 buf += StringPrototypeSlice(qs, lastPos, i);
|
/third_party/node/tools/ |
H A D | update-llhttp.sh | 28 if echo "$LLHTTP_VERSION" | grep -qs "/" ; then # Download a release
|
/third_party/alsa-lib/include/sound/uapi/ |
H A D | hdspm.h | 42 qs enumerator 56 __u8 speed; /* enum {ss, ds, qs} */
|