/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
H A D | GlyphGroup.java | 14 private boolean inverse = false; field in GlyphGroup 35 result.inverse = true; in inverseGlyphGroup() 62 if (this.inverse && !other.inverse) { in intersection() 65 } else if (other.inverse && !this.inverse) { in intersection() 68 } else if (other.inverse && this.inverse) { in intersection() 69 intersection.inverse = true; in intersection() 80 return get(glyph) ^ inverse; in contains() [all...] |
/third_party/ffmpeg/libavformat/ |
H A D | asfcrypt.c | 32 * @brief find multiplicative inverse modulo 2 ^ 32 36 static uint32_t inverse(uint32_t v) in inverse() function 38 // v ^ 3 gives the inverse (mod 16), could also be implemented in inverse() 40 uint32_t inverse = v * v * v; in inverse() local 43 inverse *= 2 - v * inverse; in inverse() 44 inverse *= 2 - v * inverse; in inverse() 45 inverse *= 2 - v * inverse; in inverse() [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | filters.c | 33 uint8_t* dst, int length, int inverse) { in PredictLine_C() 35 if (inverse) { in PredictLine_C() 48 int inverse, uint8_t* out) { in DoHorizontalFilter_C() 55 preds = inverse ? out : in; in DoHorizontalFilter_C() 60 PredictLine_C(in + 1, preds, out + 1, width - 1, inverse); in DoHorizontalFilter_C() 70 PredictLine_C(in, preds - stride, out, 1, inverse); in DoHorizontalFilter_C() 71 PredictLine_C(in + 1, preds, out + 1, width - 1, inverse); in DoHorizontalFilter_C() 85 int inverse, uint8_t* out) { in DoVerticalFilter_C() 92 preds = inverse ? out : in; in DoVerticalFilter_C() 98 PredictLine_C(in + 1, preds, out + 1, width - 1, inverse); in DoVerticalFilter_C() 32 PredictLine_C(const uint8_t* src, const uint8_t* pred, uint8_t* dst, int length, int inverse) PredictLine_C() argument 45 DoHorizontalFilter_C(const uint8_t* in, int width, int height, int stride, int row, int num_rows, int inverse, uint8_t* out) DoHorizontalFilter_C() argument 82 DoVerticalFilter_C(const uint8_t* in, int width, int height, int stride, int row, int num_rows, int inverse, uint8_t* out) DoVerticalFilter_C() argument 127 DoGradientFilter_C(const uint8_t* in, int width, int height, int stride, int row, int num_rows, int inverse, uint8_t* out) DoGradientFilter_C() argument [all...] |
H A D | alpha_processing.c | 128 static WEBP_INLINE uint32_t GetScale(uint32_t a, int inverse) { in GetScale() argument 129 return kMultTables[!inverse][a]; in GetScale() 134 static WEBP_INLINE uint32_t GetScale(uint32_t a, int inverse) { in GetScale() argument 135 return inverse ? (255u << MFIX) / a : a * KINV_255; in GetScale() 140 void WebPMultARGBRow_C(uint32_t* const ptr, int width, int inverse) { in WebPMultARGBRow_C() argument 149 const uint32_t scale = GetScale(alpha, inverse); in WebPMultARGBRow_C() 162 int width, int inverse) { in WebPMultRow_C() 170 const uint32_t scale = GetScale(a, inverse); in WebPMultRow_C() 181 void (*WebPMultARGBRow)(uint32_t* const ptr, int width, int inverse); 184 int width, int inverse); 160 WebPMultRow_C(uint8_t* WEBP_RESTRICT const ptr, const uint8_t* WEBP_RESTRICT const alpha, int width, int inverse) WebPMultRow_C() argument 189 WebPMultARGBRows(uint8_t* ptr, int stride, int width, int num_rows, int inverse) WebPMultARGBRows() argument 198 WebPMultRows(uint8_t* WEBP_RESTRICT ptr, int stride, const uint8_t* WEBP_RESTRICT alpha, int alpha_stride, int width, int num_rows, int inverse) WebPMultRows() argument [all...] |
H A D | alpha_processing_mips_dsp_r2.c | 83 int inverse) { in MultARGBRow_MIPSdspR2() 100 "beqz %[inverse], 0f \n\t" in MultARGBRow_MIPSdspR2() 117 : [inverse]"r"(inverse), [c_00ffffff]"r"(c_00ffffff), in MultARGBRow_MIPSdspR2() 82 MultARGBRow_MIPSdspR2(uint32_t* const ptr, int width, int inverse) MultARGBRow_MIPSdspR2() argument
|
/third_party/typescript/tests/baselines/reference/ |
H A D | genericReversingTypeParameters.js | 5 public inverse(): BiMap<V, K> { return null; } 10 var i = b.inverse(); // used to get the type wrong here. 18 BiMap.prototype.inverse = function () { return null; };
23 var i = b.inverse(); // used to get the type wrong here.
|
H A D | genericReversingTypeParameters2.js | 5 public inverse(): BiMap<V, K> { return null; } 9 var i = b.inverse(); // used to get the type wrong here. 17 BiMap.prototype.inverse = function () { return null; };
21 var i = b.inverse(); // used to get the type wrong here.
|
/third_party/ffmpeg/libavcodec/ |
H A D | avfft.c | 28 FFTContext *av_fft_init(int nbits, int inverse) in av_fft_init() argument 32 if (s && ff_fft_init(s, nbits, inverse)) in av_fft_init() 58 FFTContext *av_mdct_init(int nbits, int inverse, double scale) in av_mdct_init() argument 62 if (s && ff_mdct_init(s, nbits, inverse, scale)) in av_mdct_init() 122 DCTContext *av_dct_init(int nbits, enum DCTTransformType inverse) in av_dct_init() argument 126 if (s && ff_dct_init(s, nbits, inverse)) in av_dct_init()
|
H A D | dct.c | 179 av_cold int ff_dct_init(DCTContext *s, int nbits, enum DCTTransformType inverse) in ff_dct_init() argument 188 s->inverse = inverse; in ff_dct_init() 190 if (inverse == DCT_II && nbits == 5) { in ff_dct_init() 200 if ((ret = ff_rdft_init(&s->rdft, nbits, inverse == DCT_III)) < 0) { in ff_dct_init() 208 switch (inverse) { in ff_dct_init()
|
H A D | rdft.c | 42 const float k2 = 0.5 - s->inverse; in rdft_calc_c() 46 if (!s->inverse) { in rdft_calc_c() 81 if (s->inverse) { in rdft_calc_c() 95 s->inverse = trans == IDFT_C2R || trans == DFT_C2R; in ff_rdft_init()
|
H A D | fft_template.c | 144 static int split_radix_permutation(int i, int n, int inverse) in split_radix_permutation() argument 149 if(!(i&m)) return split_radix_permutation(i, m, inverse)*2; in split_radix_permutation() 151 if(inverse == !(i&m)) return split_radix_permutation(i, m, inverse)*4 + 1; in split_radix_permutation() 152 else return split_radix_permutation(i, m, inverse)*4 - 1; in split_radix_permutation() 181 s->revtab[-split_radix_permutation(i + k, n, s->inverse) & (n - 1)] = in fft_perm_avx() 188 s->revtab[-split_radix_permutation(i + k, n, s->inverse) & (n - 1)] = j; in fft_perm_avx() 194 av_cold int ff_fft_init(FFTContext *s, int nbits, int inverse) in ff_fft_init() argument 218 s->inverse = inverse; in ff_fft_init() [all...] |
H A D | fft.h | 77 int inverse; member 141 * @param inverse if 0 perform the forward transform, if 1 perform the inverse 143 int ff_fft_init(FFTContext *s, int nbits, int inverse); 156 int ff_mdct_init(FFTContext *s, int nbits, int inverse, double scale);
|
H A D | mdct15.h | 34 int inverse; member 59 int ff_mdct15_init(MDCT15Context **ps, int inverse, int N, double scale);
|
H A D | avfft.h | 46 * @param inverse if 0 perform the forward transform, if 1 perform the inverse 48 FFTContext *av_fft_init(int nbits, int inverse); 63 FFTContext *av_mdct_init(int nbits, int inverse, double scale);
|
/third_party/ffmpeg/libavfilter/ |
H A D | af_crystalizer.c | 55 #define filters(fmt, type, inverse, clp, inverset, clip, one, clip_fn, packed) \ 56 static int filter_## inverse ##_## fmt ##_## clp(AVFilterContext *ctx, \ 121 filters(flt, float, inverse, noclip, 1, 0, 1.f, av_clipf, 1) 122 filters(flt, float, inverse, clip, 1, 1, 1.f, av_clipf, 1) 126 filters(fltp, float, inverse, noclip, 1, 0, 1.f, av_clipf, 0) 127 filters(fltp, float, inverse, clip, 1, 1, 1.f, av_clipf, 0) 131 filters(dbl, double, inverse, noclip, 1, 0, 1.0, av_clipd, 1) 132 filters(dbl, double, inverse, clip, 1, 1, 1.0, av_clipd, 1) 136 filters(dblp, double, inverse, noclip, 1, 0, 1.0, av_clipd, 0) 137 filters(dblp, double, inverse, cli [all...] |
/third_party/skia/gm/ |
H A D | 3d.cpp | 23 SkM44 inverse(SkM44::kUninitialized_Constructor); in inv() 24 if (!m.invert(&inverse)) { in inv() 25 inverse.setIdentity(); in inv() 27 return inverse; in inv()
|
/third_party/node/deps/openssl/openssl/crypto/idea/ |
H A D | i_skey.c | 20 static IDEA_INT inverse(unsigned int xin); 69 *(tp++) = inverse(fp[0]); in IDEA_set_decrypt_key() 72 *(tp++) = inverse(fp[3]); in IDEA_set_decrypt_key() 91 static IDEA_INT inverse(unsigned int xin) in inverse() function
|
/third_party/openssl/crypto/idea/ |
H A D | i_skey.c | 20 static IDEA_INT inverse(unsigned int xin); 69 *(tp++) = inverse(fp[0]); in IDEA_set_decrypt_key() 72 *(tp++) = inverse(fp[3]); in IDEA_set_decrypt_key() 91 static IDEA_INT inverse(unsigned int xin) in inverse() function
|
/third_party/skia/third_party/externals/harfbuzz/util/ |
H A D | ansi-print.hh | 224 block_best (const biimage_t &bi, bool *inverse) 267 *inverse = false; 273 *inverse = true; 303 *inverse = best_inv; 335 *inverse = best_inv; 369 *inverse = inv; 403 bool inverse = false; 404 const char *c = block_best (bi, &inverse); 405 if (inverse) {
|
/third_party/skia/tests/ |
H A D | CullTestTest.cpp | 40 SkMatrix inverse; in DEF_TEST() local 41 SkAssertResult(m.invert(&inverse)); in DEF_TEST() 52 inverse.mapPoints(localPts, devPts, 4); in DEF_TEST()
|
/third_party/skia/src/core/ |
H A D | SkDrawShadowInfo.cpp | 192 SkMatrix inverse; in GetLocalBounds() local 193 if (ctm.invert(&inverse)) { in GetLocalBounds() 194 inverse.mapVectors(&spotOffset, 1); in GetLocalBounds() 225 SkMatrix inverse; in GetLocalBounds() local 226 if (ctm.invert(&inverse)) { in GetLocalBounds() 227 inverse.mapRect(bounds); in GetLocalBounds()
|
/third_party/python/Tools/scripts/ |
H A D | pdeps.py | 13 # 2) The inverse of (1) 15 # 4) The inverse of (3) 44 inv = inverse(table) 52 invreach = inverse(reach) 119 # All keys of the original table are made keys of the inverse, 120 # so there may be empty lists in the inverse. 122 def inverse(table): function
|
/third_party/skia/src/effects/imagefilters/ |
H A D | SkShaderImageFilter.cpp | 101 SkMatrix inverse; in onFilterImage() local 102 if (matrix.invert(&inverse)) { in onFilterImage() 103 inverse.mapRect(&rect); in onFilterImage()
|
/third_party/ffmpeg/libavcodec/tests/ |
H A D | fft.c | 82 static int fft_ref_init(int nbits, int inverse) in fft_ref_init() argument 93 if (!inverse) in fft_ref_init() 220 static inline void fft_init(FFTContext **s, int nbits, int inverse) in fft_init() argument 223 *s = av_fft_init(nbits, inverse); in fft_init() 225 ff_fft_init(*s, nbits, inverse); in fft_init() 229 static inline void mdct_init(FFTContext **s, int nbits, int inverse, double scale) in mdct_init() argument 232 *s = av_mdct_init(nbits, inverse, scale); in mdct_init() 234 ff_mdct_init(*s, nbits, inverse, scale); in mdct_init() 357 "-i inverse transform test\n" in help()
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | kiss_fft.c | 41 if (!st->inverse) { in kf_bfly2() 101 if (st->inverse) in kf_bfly4() 185 if (!st->inverse) { in kf_bfly3() 238 if (!st->inverse) { in kf_bfly5() 300 if (!st->inverse) { in kf_bfly_generic() 480 st->inverse = inverse_fft; in kiss_fft_alloc() 484 if (!st->inverse) in kiss_fft_alloc() 492 if (st->inverse) in kiss_fft_alloc()
|