/development/perftests/panorama/feature_mos/src/mosaic/ |
Blend.cpp | 965 double xx, yy; local 967 MosaicToFrame(inv_trs, si, sj, xx, yy); 969 if (xx < 0.0 || yy < 0.0 || xx > width - 1.0 || yy > height - 1.0) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/ |
ECFieldElement.java | 167 BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); local 169 BigInteger xy = xx.multiply(yx); 175 BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); local 177 BigInteger xy = xx.multiply(yx); 198 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); local 200 BigInteger xy = xx.multiply(yx); 206 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); local 208 BigInteger xy = xx.multiply(yx); 712 LongArray ax = this.x, bx = ((F2m)b).x, xx = ((F2m)x).x, yx = ((F2m)y).x; local 715 LongArray xy = xx.multiply(yx, m, ks) 753 LongArray ax = this.x, xx = ((F2m)x).x, yx = ((F2m)y).x; local [all...] |
/external/clang/test/Sema/ |
array-init.c | 146 static char const xx[] = "test"; variable 147 int xx_sizecheck[(sizeof(xx) / sizeof(char)) == 5? 1 : -1];
|
/external/freetype/src/truetype/ |
ttgload.c | 591 FT_Fixed xx, xy, yy, yx; local 654 xx = yy = 0x10000L; 659 xx = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; 660 yy = xx; 664 xx = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; 669 xx = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; 675 subglyph->transform.xx = xx; [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Quaternion.java | 407 float xx = x * xs;
local 422 result.m11 = 1 - (xx + zz);
426 result.m22 = 1 - (xx + yy);
452 float xx = x * xs;
local 467 result.m11 = 1 - (xx + zz);
471 result.m22 = 1 - (xx + yy);
511 float xx = x * x * norm;
local 529 store.y = 1 - 2 * (xx + zz);
535 store.z = 1 - 2 * (xx + yy);
[all...] |
/external/libnfc-nci/src/nfa/ee/ |
nfa_ee_act.c | 96 int xx, yy = 0; local 105 for (xx = 0; xx < len; xx++) 126 int xx; local 131 for (xx = 0; xx < NFA_EE_NUM_TECH; xx++) 134 if (p_cb->tech_switch_on & nfa_ee_tech_mask_list[xx]) 136 if (p_cb->tech_switch_off & nfa_ee_tech_mask_list[xx]) 180 int xx; local 215 int xx; local 277 int len = 0, xx; local 304 int xx, yy, aid_len_offset, offset; local 352 int xx; local 426 int xx; local 835 int xx; local 987 int xx; local 1014 int xx, num_removed = 0; local 1068 UINT8 xx; local 1313 UINT32 xx; local 1357 UINT8 xx; local 1693 UINT8 xx; local 1785 int xx; local 1819 int xx, yy; local 1906 int xx; local 2113 UINT32 xx; local 2211 int xx; local 2297 int xx; local [all...] |
/external/mesa3d/src/mesa/math/ |
m_matrix.c | 797 GLfloat xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c, s, c; local 924 xx = x * x; 936 M(0,0) = (one_c * xx) + c; [all...] |
/external/opencv/cv/src/ |
cvlkpyramid.cpp | 864 double xx, xy, yy; local 880 xx = x * x; 886 G[14] += xx * ixix; 888 G[16] += xx * ixiy; 902 G[28] += xx * iyiy; [all...] |
/external/pdfium/core/include/fxcrt/ |
fx_coordinates.h | 205 FX_FLOAT xx = (FX_FLOAT)FXT_PSV::x; local 209 FXT_PSV::x = xx * cosValue - yy * sinValue; 210 FXT_PSV::y = xx * sinValue + yy * cosValue;
|
/external/pdfium/third_party/freetype/src/truetype/ |
ttgload.c | 587 FT_Fixed xx, xy, yy, yx; local 634 xx = yy = 0x10000L; 639 xx = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; 640 yy = xx; 644 xx = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; 649 xx = (FT_Fixed)FT_NEXT_SHORT( p ) << 2; 655 subglyph->transform.xx = xx; [all...] |
/external/skia/third_party/etc1/ |
etc1.cpp | 285 int xx = bx + x; local 286 int i = xx + 4 * y; 369 int xx = bx + x; local 370 int i = xx + 4 * y; 373 &pCompressed->low, y + xx * 4, pModifierTable);
|
/external/speex/libspeex/ |
resample.c | 279 float xx = x * cutoff; local 285 return WORD2INT(32768.*cutoff*sin(M_PI*xx)/(M_PI*xx) * compute_func(fabs(2.*x/N), window_func)); 292 float xx = x * cutoff; local 298 return cutoff*sin(M_PI*xx)/(M_PI*xx) * compute_func(fabs(2.*x/N), window_func); [all...] |
/external/valgrind/none/tests/amd64/ |
pcmpstr64.c | 76 UChar xx = 0; local 78 if (x >= '0' && x <= '9') { xx = x - '0'; } 79 else if (x >= 'A' && x <= 'F') { xx = x - 'A' + 10; } 80 else if (x >= 'a' && x <= 'f') { xx = x - 'a' + 10; } 83 assert(xx < 16); 84 xx = (xx << 4) | xx; 85 assert(xx < 256); 86 dst->uChar[i] = xx; [all...] |
/external/webrtc/src/modules/audio_processing/aec/ |
aec_rdft_sse2.c | 192 const __m128 xx = _mm_add_ps(x0r0_0i0_0r1_x0i1, x2r0_2i0_2r1_x2i1); local 219 _mm_storel_epi64((__m128i*)&a[j0 + 0], _mm_castps_si128(xx)); 221 _mm_shuffle_epi32(_mm_castps_si128(xx),
|
/frameworks/native/opengl/libs/ETC1/ |
etc1.cpp | 277 int xx = bx + x; local 278 int i = xx + 4 * y; 361 int xx = bx + x; local 362 int i = xx + 4 * y; 365 &pCompressed->low, y + xx * 4, pModifierTable);
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Blend.cpp | 983 double xx, yy; local [all...] |
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
Blend.cpp | 963 double xx, yy; local [all...] |
/system/bt/bta/av/ |
bta_av_aact.c | 245 UINT8 xx =0; local 246 for (xx = 0; xx<BTA_AV_MAX_SEPS; xx++) 248 if ((p_scb->seps[xx].tsep == local_sep) && 249 (p_scb->seps[xx].codec_type == p_scb->codec_type)) 250 return (p_scb->seps[xx].av_handle); 267 UINT8 xx =0; local 268 for (xx = 0; xx<BTA_AV_MAX_SEPS; xx++ 438 int xx; local 750 int xx; local 1056 int xx; local [all...] |
/system/bt/bta/hh/ |
bta_hh_le.c | 214 UINT8 xx; local 218 for (xx = 0; xx < BTA_HH_MAX_DEVICE; xx ++) 219 bta_hh_cb.le_cb_index[xx] = BTA_HH_IDX_INVALID; [all...] |
/system/bt/stack/btm/ |
btm_ble.c | 320 UINT8 xx; local 325 xx = btm_handle_to_acl_index (conn_handle); 326 if (xx >= MAX_L2CAP_LINKS) 329 p = &btm_cb.acl_db[xx]; [all...] |
btm_ble_gap.c | 2625 UINT16 xx; local 3200 int xx; local [all...] |
btm_inq.c | 1155 UINT16 xx; local 1441 UINT16 xx; local 1503 UINT16 xx; local 1539 UINT16 xx; local 1565 UINT16 xx; local 1851 UINT8 num_resp, xx; local 2065 UINT8 xx, yy, num_resp; local 2538 UINT8 xx; local 2711 UINT8 yy, xx; local 2839 UINT8 xx; local [all...] |
/system/bt/stack/gatt/ |
gatt_utils.c | 1103 UINT8 xx; local 1675 UINT16 xx = 0; local [all...] |
/system/bt/stack/l2cap/ |
l2c_utils.c | 55 int xx; local 58 for (xx = 0; xx < MAX_L2CAP_LINKS; xx++, p_lcb++) 264 int xx; local 267 for (xx = 0; xx < MAX_L2CAP_LINKS; xx++, p_lcb++) 1216 int xx; local 1800 UINT16 xx; local 1881 UINT16 xx; local 2200 int xx; local 2226 int xx; local 2309 int xx; local 2568 int xx; local 2750 int xx; local 3018 int xx; local 3048 UINT8 xx; local 3266 int xx; local 3479 UINT8 xx; local 3521 UINT8 xx; local [all...] |
/external/flac/libFLAC/ |
stream_decoder.c | 1658 FLAC__uint64 xx; local 2170 FLAC__uint64 xx; local [all...] |