Home
last modified time | relevance | path

Searched refs:square (Results 1 - 25 of 41) sorted by relevance

12

/third_party/libwebsockets/plugins/ssh-base/crypto/
H A Dsmult_curve25519_ref.c88 static void square(unsigned int out[32],const unsigned int a[32]) in square() function
160 square(b0,a0); in mainloop()
161 square(b0 + 32,a0 + 32); in mainloop()
166 square(r,c1 + 32); in mainloop()
172 square(xzn1b,c1); in mainloop()
194 /* 2 */ square(z2,z); in recip()
195 /* 4 */ square(t1,z2); in recip()
196 /* 8 */ square(t0,t1); in recip()
199 /* 22 */ square(t0,z11); in recip()
202 /* 2^6 - 2^1 */ square(t in recip()
[all...]
/third_party/node/test/fixtures/source-map/
H A Dtabs.js4 var cubes, list, math, num, number, opposite, race, square;
16 square = function(x) {
26 square: square,
28 return x * square(x);
13 square = function(x) { global() function
/third_party/typescript/tests/baselines/reference/
H A DmappedTypeNestedGenericInstantiation.js11 const square = (x: number) => x * x;
13 const v = chain({a: 1, b: 2}).mapValues(square).value();
18 var square = function (x) { return x * x; }; function
19 var v = chain({ a: 1, b: 2 }).mapValues(square).value();
H A DarrowFunctionMissingCurlyWithSemicolon.js5 var square = (x: number) => x * x;
11 var square = function (x) { return x * x; }; function
H A DcommentsCommentParsing.js129 /** this is square function
134 function square(a: number) { function
263 /** this is square function
268 function square(a) {
351 /** this is square function
356 declare function square(a: number): number;
/third_party/ltp/tools/sparse/sparse-src/validation/
H A Dinteger-const-expr.c8 static inline unsigned square(unsigned n) in square() function
52 TEST(0, square(2)); in main()
53 TEST(0, square(argc)); in main()
73 TEST(0, ({square(y--); 0; })); in main()
74 TEST(0, (square(x), 3)); in main()
/third_party/skia/gm/
H A Dnested.cpp156 // 5px wide square outside a 3px wide square. in DEF_SIMPLE_GM()
157 SkPath square; in DEF_SIMPLE_GM()
158 square.addRect(SkRect::MakeLTRB(0.f, 9.f, 5.f, 14.f)); in DEF_SIMPLE_GM()
159 square.addRect(SkRect::MakeLTRB(1.f, 10.f, 4.f, 13.f), SkPathDirection::kCCW); in DEF_SIMPLE_GM()
172 canvas->drawPath(square, paint); in DEF_SIMPLE_GM()
174 canvas->drawPath(square, paint); in DEF_SIMPLE_GM()
176 canvas->drawPath(square, paint); in DEF_SIMPLE_GM()
/third_party/ffmpeg/libavutil/
H A Dfixed_dsp.h167 * Calculate the square root
178 int retval, bit_mask, guess, square, i; in fixed_sqrt() local
193 square = (int)((accu + bit_mask) >> bits); in fixed_sqrt()
194 if (x >= square) in fixed_sqrt()
/third_party/ffmpeg/libavcodec/
H A Ddpcm.c146 /* initialize square table */ in dpcm_decode_init()
148 int16_t square = i * i; in dpcm_decode_init() local
149 s->array[i ] = square; in dpcm_decode_init()
150 s->array[i + 128] = -square; in dpcm_decode_init()
174 int16_t square = i * i * 2; in dpcm_decode_init() local
175 s->array[i+128] = i < 0 ? -square: square; in dpcm_decode_init()
H A Dh264_mc_template.c38 int n, int square, in mc_part()
54 mc_part_weighted(h, sl, n, square, height, delta, dest_y, dest_cb, dest_cr, in mc_part()
59 mc_part_std(h, sl, n, square, height, delta, dest_y, dest_cb, dest_cr, in mc_part()
37 mc_part(const H264Context *h, H264SliceContext *sl, int n, int square, int height, int delta, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int x_offset, int y_offset, const qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, const qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg, const h264_weight_func *weight_op, const h264_biweight_func *weight_avg, int list0, int list1) mc_part() argument
H A Dh264_mb.c207 int n, int square, int height, in mc_dir_part()
250 if (!square) in mc_dir_part()
268 if (!square) in mc_dir_part()
282 if (!square) in mc_dir_part()
322 int n, int square, in mc_part_std()
353 mc_dir_part(h, sl, ref, n, square, height, delta, 0, in mc_part_std()
363 mc_dir_part(h, sl, ref, n, square, height, delta, 1, in mc_part_std()
370 int n, int square, in mc_part_weighted()
414 mc_dir_part(h, sl, &sl->ref_list[0][refn0], n, square, height, delta, 0, in mc_part_weighted()
418 mc_dir_part(h, sl, &sl->ref_list[1][refn1], n, square, heigh in mc_part_weighted()
205 mc_dir_part(const H264Context *h, H264SliceContext *sl, H264Ref *pic, int n, int square, int height, int delta, int list, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int src_x_offset, int src_y_offset, const qpel_mc_func *qpix_op, h264_chroma_mc_func chroma_op, int pixel_shift, int chroma_idc) mc_dir_part() argument
321 mc_part_std(const H264Context *h, H264SliceContext *sl, int n, int square, int height, int delta, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int x_offset, int y_offset, const qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, const qpel_mc_func *qpix_avg, h264_chroma_mc_func chroma_avg, int list0, int list1, int pixel_shift, int chroma_idc) mc_part_std() argument
369 mc_part_weighted(const H264Context *h, H264SliceContext *sl, int n, int square, int height, int delta, uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr, int x_offset, int y_offset, const qpel_mc_func *qpix_put, h264_chroma_mc_func chroma_put, h264_weight_func luma_weight_op, h264_weight_func chroma_weight_op, h264_biweight_func luma_weight_avg, h264_biweight_func chroma_weight_avg, int list0, int list1, int pixel_shift, int chroma_idc) mc_part_weighted() argument
[all...]
H A Dxan.c466 unsigned square = mul(a, a); in pow4() local
467 return mul(square, square); in pow4()
/third_party/libwebsockets/win32port/zlib/
H A Dcrc32.c70 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
359 local void gf2_matrix_square(square, mat) in gf2_matrix_square()
360 unsigned long *square; in gf2_matrix_square()
366 square[n] = gf2_matrix_times(mat, mat[n]);
398 /* apply len2 zeros to crc1 (first square will put the operator for one
/third_party/node/deps/v8/third_party/zlib/
H A Dcrc32.c56 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
415 local void gf2_matrix_square(square, mat) in gf2_matrix_square()
416 unsigned long *square; in gf2_matrix_square()
422 square[n] = gf2_matrix_times(mat, mat[n]);
454 /* apply len2 zeros to crc1 (first square will put the operator for one
/third_party/skia/third_party/externals/zlib/
H A Dcrc32.c56 local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
415 local void gf2_matrix_square(square, mat) in gf2_matrix_square()
416 unsigned long *square; in gf2_matrix_square()
422 square[n] = gf2_matrix_times(mat, mat[n]);
454 /* apply len2 zeros to crc1 (first square will put the operator for one
/third_party/openssl/test/
H A Dbntests.pl56 my $square = bn($s{'Square'});
58 return if $square == $a->bmul($a);
/third_party/vulkan-headers/tests/
H A Dvk_icd.c11 int square(int i) in square() function
H A Dvk_layer.c11 int square(int i) in square() function
/third_party/mesa3d/src/compiler/glsl/glcpp/tests/
H A D147-define-macro-no-space.c29 #define S] square bracket (right)
/third_party/ffmpeg/tests/fate/
H A Dgapless.mak7 FATE_GAPLESS-$(CONFIG_MP3_DEMUXER) += fate-audiomatch-square-mp3
8 fate-audiomatch-square-mp3: CMD = audio_match $(TARGET_SAMPLES)/audiomatch/square3.mp3 $(SAMPLES)/audiomatch/square3.wav
10 FATE_GAPLESS-$(CONFIG_MOV_DEMUXER) += fate-audiomatch-square-aac
46 fate-audiomatch-square-aac: CMD = audio_match $(TARGET_SAMPLES)/audiomatch/square3.m4a $(SAMPLES)/audiomatch/square3.wav
/third_party/skia/third_party/etc1/
H A Detc1.cpp206 // Output is a 4 x 4 square of 3-byte pixels in form R, G, B
302 inline int square(int x) { in square() function
320 etc1_uint32 score = (etc1_uint32) (6 * square(decodedG - pixelG)); in chooseModifier()
325 score += (etc1_uint32) (3 * square(decodedR - pixelR)); in chooseModifier()
330 score += (etc1_uint32) square(decodedB - pixelB); in chooseModifier()
484 // Input is a 4 x 4 square of 3-byte pixels in form R, G, B
/third_party/ffmpeg/libavfilter/
H A Dvf_lensfun.c304 static float square(float x) in square() function
360 d = square(new_x - (new_x_int + i - 2)) * square(new_y - (new_y_int + j - 2)); in distortion_correction_filter_slice()
414 d = square(new_x - (new_x_int + i - 2)) * square(new_y - (new_y_int + j - 2)); in distortion_correction_filter_slice()
/third_party/node/deps/openssl/openssl/crypto/bn/
H A Dbn_prime.c30 #define square(x) ((BN_ULONG)(x) * (BN_ULONG)(x)) macro
510 && square(primes[i]) > BN_get_word(rnd) + delta) in probable_prime()
589 && square(primes[i]) > BN_get_word(rnd) + delta) in probable_prime_dh()
/third_party/openssl/crypto/bn/
H A Dbn_prime.c30 #define square(x) ((BN_ULONG)(x) * (BN_ULONG)(x)) macro
510 && square(primes[i]) > BN_get_word(rnd) + delta) in probable_prime()
589 && square(primes[i]) > BN_get_word(rnd) + delta) in probable_prime_dh()
/third_party/python/Lib/test/
H A Dtest_functools.py1384 def square(x): function
1387 self.assertEqual(list(map(square, [10, 20, 10])),
1389 self.assertEqual(square.cache_info().hits, 1)
1390 self.assertEqual(square.cache_info().misses, 2)
1391 self.assertEqual(square.cache_info().maxsize, 128)
1392 self.assertEqual(square.cache_info().currsize, 2)
1552 def square(x): function
1554 self.assertEqual(square(3), 9)
1555 self.assertEqual(type(square(3)), type(9))
1556 self.assertEqual(square(3.
[all...]

Completed in 17 milliseconds

12