/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/ |
d3d11tex.hlsl | 42 float4 factors : FACTORS;
50 result.factors.xy = input.texcoord;
51 result.factors.zw = 1 - input.texcoord;
59 float4 a = a0 * input.factors.z + a1 * input.factors.x;
63 float4 b = b0 * input.factors.z + b1 * input.factors.x;
65 return a * input.factors.w + b * input.factors.y; [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/ |
d3d11tex.hlsl | 42 float4 factors : FACTORS;
50 result.factors.xy = input.texcoord;
51 result.factors.zw = 1 - input.texcoord;
59 float4 a = a0 * input.factors.z + a1 * input.factors.x;
63 float4 b = b0 * input.factors.z + b1 * input.factors.x;
65 return a * input.factors.w + b * input.factors.y; [all...] |
/external/chromium_org/chrome/browser/ |
chrome_page_zoom_unittest.cc | 10 // Fetch a vector of preset zoom factors, including a custom value that we 13 std::vector<double> factors = local 16 // Expect at least 10 zoom factors. 17 EXPECT_GE(factors.size(), 10U); 20 EXPECT_DOUBLE_EQ(factors.front(), content::kMinimumZoomFactor); 21 EXPECT_DOUBLE_EQ(factors.back(), content::kMaximumZoomFactor); 32 for (i = factors.begin(); i != factors.end(); ++i) { 80 std::vector<double> factors = chrome_page_zoom::PresetZoomFactors(too_low); local 81 EXPECT_FALSE(content::ZoomValuesEqual(factors.front(), too_low)) [all...] |
/external/chromium_org/third_party/skia/experimental/Intersection/ |
CubicParameterizationCode.cpp | 51 // result1 and result2 are the same. 102 factors: 156 const int factors = 8; variable 160 int n[factors]; // 0 or power of a (1, 2, or 3) for a through h 231 if (x < 'a' || x > 'a' + factors) { 261 match(str, len, c[xx_coeff], "x^2"); // 7 factors 262 match(str, len, c[xy_coeff], "x y"); // 8 factors 263 match(str, len, c[yy_coeff], "y^2"); // 7 factors 264 match(str, len, c[x_coeff], "x"); // 21 factors 265 match(str, len, c[y_coeff], "y"); // 21 factors 266 match(str, len, c[c_coeff], ""); // 34 factors : total 10 [all...] |
/external/skia/experimental/Intersection/ |
CubicParameterizationCode.cpp | 51 // result1 and result2 are the same. 102 factors: 156 const int factors = 8; variable 160 int n[factors]; // 0 or power of a (1, 2, or 3) for a through h 231 if (x < 'a' || x > 'a' + factors) { 261 match(str, len, c[xx_coeff], "x^2"); // 7 factors 262 match(str, len, c[xy_coeff], "x y"); // 8 factors 263 match(str, len, c[yy_coeff], "y^2"); // 7 factors 264 match(str, len, c[x_coeff], "x"); // 21 factors 265 match(str, len, c[y_coeff], "y"); // 21 factors 266 match(str, len, c[c_coeff], ""); // 34 factors : total 10 [all...] |
/external/opencv/cxcore/src/ |
cxdxt.cpp | 177 icvDFTFactorize( int n, int* factors ) 183 factors[0] = n; 190 factors[nf++] = f; 199 factors[nf++] = f; 211 factors[nf++] = n; 213 f = (factors[0] & 1) == 0; 215 CV_SWAP( factors[i], factors[nf-i-1+f], j ); 221 icvDFTInit( int n0, int nf, int* factors, int* itab, int elem_size, void* _wave, int inv_itab ) 224 int n = factors[0], m = 0 [all...] |
/external/speex/libspeex/ |
kiss_fft.c | 327 int * factors, 331 const int p=*factors++; /* the radix */ 332 const int m=*factors++; /* stage's fft length/p */ 347 kf_shuffle( Fout , f, fstride*p, in_stride, factors,st); 360 int * factors, 369 const int p=*factors++; /* the radix */ 370 const int m=*factors++; /* stage's fft length/p */ 385 kf_work( Fout , f, fstride*p, in_stride, factors,st, N*p, fstride*in_stride, m); 416 kf_work( Fout , f, fstride*p, in_stride, factors,st, N*p, fstride*in_stride, m); 450 p = n; /* no more factors, skip to end * [all...] |
_kiss_fft_guts.h | 26 /* e.g. an fft of length 128 has 4 factors 34 int factors[2*MAXFACTORS]; member in struct:kiss_fft_state
|
/external/chromium_org/third_party/opus/src/celt/ |
kiss_fft.c | 456 opus_int16 * factors, 460 const int p=*factors++; /* the radix */ 461 const int m=*factors++; /* stage's fft length/p */ 476 compute_bitrev_table( Fout , f, fstride*p, in_stride, factors,st); 501 p = n; /* no more factors, skip to end */ 544 size_t memneeded = sizeof(struct kiss_fft_state); /* twiddle factors*/ 574 if (!kf_factor(nfft,st->factors)) 583 compute_bitrev_table(0, bitrev, 1,1, st->factors,st); 635 p = st->factors[2*L]; 636 m = st->factors[2*L+1] [all...] |
kiss_fft.h | 75 /* e.g. an fft of length 128 has 4 factors 86 opus_int16 factors[2*MAXFACTORS]; member in struct:kiss_fft_state
|
/external/libopus/celt/ |
kiss_fft.c | 456 opus_int16 * factors, 460 const int p=*factors++; /* the radix */ 461 const int m=*factors++; /* stage's fft length/p */ 476 compute_bitrev_table( Fout , f, fstride*p, in_stride, factors,st); 501 p = n; /* no more factors, skip to end */ 544 size_t memneeded = sizeof(struct kiss_fft_state); /* twiddle factors*/ 574 if (!kf_factor(nfft,st->factors)) 583 compute_bitrev_table(0, bitrev, 1,1, st->factors,st); 635 p = st->factors[2*L]; 636 m = st->factors[2*L+1] [all...] |
kiss_fft.h | 75 /* e.g. an fft of length 128 has 4 factors 86 opus_int16 factors[2*MAXFACTORS]; member in struct:kiss_fft_state
|
/external/chromium_org/third_party/icu/source/common/ |
unames.cpp | 773 writeFactorSuffix(const uint16_t *factors, uint16_t count, 782 /* write elements according to the factors */ 786 * with the factors of this algorithm 792 factor=factors[i]; 798 * guarantees here that code<=factors[0] 828 /* skip the rest of the strings for this factors[i] */ 829 factor=(uint16_t)(factors[i]-indexes[i]-1); 905 const uint16_t *factors=(const uint16_t *)(range+1); local 907 const char *s=(const char *)(factors+count); 915 bufferPos+=writeFactorSuffix(factors, count 995 const uint16_t *factors=(const uint16_t *)(range+1); local 1124 const uint16_t *factors=(const uint16_t *)(range+1); local 1238 const uint16_t *factors=(const uint16_t *)(range+1); local [all...] |
/external/icu/icu4c/source/common/ |
unames.cpp | 773 writeFactorSuffix(const uint16_t *factors, uint16_t count, 782 /* write elements according to the factors */ 786 * with the factors of this algorithm 792 factor=factors[i]; 798 * guarantees here that code<=factors[0] 828 /* skip the rest of the strings for this factors[i] */ 829 factor=(uint16_t)(factors[i]-indexes[i]-1); 905 const uint16_t *factors=(const uint16_t *)(range+1); local 907 const char *s=(const char *)(factors+count); 915 bufferPos+=writeFactorSuffix(factors, count 995 const uint16_t *factors=(const uint16_t *)(range+1); local 1124 const uint16_t *factors=(const uint16_t *)(range+1); local 1238 const uint16_t *factors=(const uint16_t *)(range+1); local [all...] |
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeySourceRandom.java | 185 // if verbose, show factors 220 * See if any key exists for non-zero factors. 229 * set the factors 231 * @param factors percentages for each type of event 233 public void setFactors(float factors[]) { 235 if (factors.length < c) { 236 c = factors.length; 239 mFactors[i] = factors[i]; 453 //check factors
|
/external/chromium_org/third_party/libjpeg_turbo/simd/ |
jsimdcfg.inc.h | 117 %define IFAST_SCALE_BITS 2 ; fractional bits in scale factors
|
/external/chromium_org/third_party/opus/src/celt/dump_modes/ |
dump_modes.c | 180 fprintf (file, "%d, ", mode->mdct.kfft[k]->factors[j]); 181 fprintf (file, "},\t/* factors */\n");
|
/external/chromium_org/ui/webui/resources/js/ |
util.js | 55 * Returns the scale factors supported by this platform. 56 * @return {Array} The supported scale factors.
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/x86/ |
vp9_subpixel_bilinear_sse2.asm | 39 pmullw xmm0, xmm4 ;multiply the filter factors
|
vp9_high_subpixel_8t_sse2.asm | 67 pmaddwd xmm0, k0k6 ;multiply the filter factors 113 movdqa k0k1, xmm0 ;store filter factors on stack
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_texture_signed_rgba.spec | 111 127 (that is, uses different scale factors for negative and positive
|
/external/jpeg/ |
mips_idct_le.S | 59 # $s0:3 - simd quantization factors 300 # $s0:3 - simd quantization factors
|
/external/libvpx/libvpx/vp9/common/x86/ |
vp9_subpixel_bilinear_sse2.asm | 39 pmullw xmm0, xmm4 ;multiply the filter factors
|
/external/mesa3d/docs/ |
MESA_texture_signed_rgba.spec | 111 127 (that is, uses different scale factors for negative and positive
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/x86/ |
vp9_subpixel_bilinear_sse2.asm | 39 pmullw xmm0, xmm4 ;multiply the filter factors
|