HomeSort by relevance Sort by last modified time
    Searched refs:_y (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/clang/test/CXX/lex/lex.literal/lex.ext/
p9.cpp 10 "P"_x "Q" "R"_y; // expected-error {{differing user-defined suffixes ('_x' and '_y') in string literal concatenation}} local
  /external/chromium_org/third_party/opus/src/celt/
cwrs.h 44 void encode_pulses(const int *_y, int N, int K, ec_enc *enc);
46 void decode_pulses(int *_y, int N, int K, ec_dec *dec);
cwrs.c 371 _y: Returns the vector of pulses.*/
372 static inline void cwrsi1(int _k,opus_uint32 _i,int *_y){
375 _y[0]=(_k+s)^s;
380 _y: Returns the vector of pulses.*/
381 static inline void cwrsi2(int _k,opus_uint32 _i,int *_y){
393 _y[0]=(yj+s)^s;
394 cwrsi1(_k,_i,_y+1);
399 _y: Returns the vector of pulses.*/
400 static void cwrsi3(int _k,opus_uint32 _i,int *_y){
414 _y[0]=(yj+s)^s
    [all...]
  /external/chromium_org/third_party/opus/src/tests/
test_opus_common.h 28 static inline void deb2_impl(unsigned char *_t,unsigned char **_p,int _k,int _x,int _y)
32 if(_y<3)for(i=0;i<_y;i++)*(--*_p)=_t[i+1];
34 _t[_x]=_t[_x-_y];
35 deb2_impl(_t,_p,_k,_x+1,_y);
36 for(i=_t[_x-_y]+1;i<_k;i++){
  /external/llvm/include/llvm/Support/
system_error.h 719 inline bool operator<(const error_condition& _x, const error_condition& _y) {
720 return _x.category() < _y.category()
721 || (_x.category() == _y.category() && _x.value() < _y.value());
786 inline bool operator<(const error_code& _x, const error_code& _y) {
787 return _x.category() < _y.category()
788 || (_x.category() == _y.category() && _x.value() < _y.value());
791 inline bool operator==(const error_code& _x, const error_code& _y) {
792 return _x.category() == _y.category() && _x.value() == _y.value()
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_tile_soa.h 75 #define TILE_PIXEL(_p, _x, _y, _c) ((_p)[tile_pixel_offset(_x, _y, _c)])
  /external/clang/test/CodeGenCXX/
cxx11-user-defined-literal.cpp 6 S operator"" _y(wchar_t);
29 "foo"_x, "bar"_x, L'a'_y, 42_z, 1.0_f; local
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_tile_soa.h 75 #define TILE_PIXEL(_p, _x, _y, _c) ((_p)[tile_pixel_offset(_x, _y, _c)])
  /external/tremolo/Tremolo/
misc.h 157 #define XPROD32(_a, _b, _t, _v, _x, _y) \
159 *(_y)=MULT32(_b,_t)-MULT32(_a,_v); }
160 #define XPROD31(_a, _b, _t, _v, _x, _y) \
162 *(_y)=MULT31(_b,_t)-MULT31(_a,_v); }
163 #define XNPROD31(_a, _b, _t, _v, _x, _y) \
165 *(_y)=MULT31(_b,_t)+MULT31(_a,_v); }
  /external/clang/test/Lexer/
token-concat.cpp 13 id("s"_x)_y // CHECK: "s"_x _y
  /external/speex/libspeex/
filters_bfin.h 85 void filter_mem16(const spx_word16_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx_mem_t *mem, char *stack)
119 "P1 = %2;\n\t" /* _y */
221 : : "m" (xy), "m" (_x), "m" (_y), "m" (numden), "m" (N), "m" (ord), "m" (mem)
230 void iir_mem16(const spx_word16_t *_x, const spx_coef_t *den, spx_word16_t *_y, int N, int ord, spx_mem_t *mem, char *stack)
347 : : "m" (yy), "m" (_x), "m" (_y), "m" (den), "m" (N), "m" (ord), "m" (mem)
468 void filter_mem2(const spx_sig_t *_x, const spx_coef_t *num, const spx_coef_t *den, spx_sig_t *_y, int N, int ord, spx_mem_t *mem)
489 _y[i] = ADD32(_x[i],SHL32(yi,1));
490 y[i] = EXTRACT16(SHR32(_y[i],SIG_SHIFT));
500 _y[i] = ADD32(_x[i],SHL32(yi,1));
501 y[i] = EXTRACT16(SHR32(_y[i],SIG_SHIFT))
    [all...]
ltp_arm4.h 88 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack)
94 //corr[nb_pitch-1-i]=inner_prod(x, _y+i, len);
99 const spx_word16_t *y = _y+i;
ltp_sse.h 57 void pitch_xcorr(const float *_x, const float *_y, float *corr, int len, int nb_pitch, char *stack)
72 y[i] = _mm_loadu_ps(_y+(i<<2)+offset);
ltp_bfin.h 66 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack)
106 : : "m" (_x), "m" (_y), "m" (corr), "m" (len), "m" (nb_pitch)
ltp.h 52 void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack);
  /external/chromium_org/third_party/WebKit/Source/core/css/
ShadowValue.cpp 31 PassRefPtr<CSSPrimitiveValue> _y,
38 , y(_y)
  /external/kernel-headers/original/linux/
kernel.h 266 typeof(y) _y = (y); \
267 (void) (&_x == &_y); \
268 _x < _y ? _x : _y; })
272 typeof(y) _y = (y); \
273 (void) (&_x == &_y); \
274 _x > _y ? _x : _y; })
  /external/libnl-headers/
netlink-local.h 128 typeof(y) _y = (y); \
129 (void) (&_x == &_y); \
130 _x < _y ? _x : _y; })
134 typeof(y) _y = (y); \
135 (void) (&_x == &_y); \
136 _x > _y ? _x : _y; })
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_format_yuv.h 67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b)); local
71 *y = _y + 16;
81 const int _y = y - 16; local
89 *r = scale * (y_factor * _y + 1.596f * _v);
90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v);
91 *b = scale * (y_factor * _y + 2.018f * _u );
109 const int _y = y - 16; local
113 const int _r = (298 * _y + 409 * _v + 128) >> 8;
114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8;
115 const int _b = (298 * _y + 516 * _u + 128) >> 8
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_format_yuv.h 67 const int _y = scale * ( (0.257f * _r) + (0.504f * _g) + (0.098f * _b)); local
71 *y = _y + 16;
81 const int _y = y - 16; local
89 *r = scale * (y_factor * _y + 1.596f * _v);
90 *g = scale * (y_factor * _y - 0.391f * _u - 0.813f * _v);
91 *b = scale * (y_factor * _y + 2.018f * _u );
109 const int _y = y - 16; local
113 const int _r = (298 * _y + 409 * _v + 128) >> 8;
114 const int _g = (298 * _y - 100 * _u - 208 * _v + 128) >> 8;
115 const int _b = (298 * _y + 516 * _u + 128) >> 8
    [all...]
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 69 void operator"x" _y(char); // expected-error {{must be '""'}}
74 'b'_y;
  /hardware/samsung_slsi/exynos5/gralloc/
framebuffer.cpp 115 unsigned int _x, _y, _r; local
128 ret = sscanf(buf, "U:%ux%up-%u", &_x, &_y, &_r);
133 _x, _y, _r, fbname);
136 *yres = (int32_t)_y;
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
RadialGradient_Delegate.java 200 float _y = pt2[1]; local
201 float distance = (float) Math.sqrt(_x * _x + _y * _y);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
SoftContextMenu.js 43 this._y = event.y;
235 var targetY = this._y + subMenuOffset.y;
345 if (event.x === this._x && event.y === this._y && new Date().getTime() - this._time < 300)
  /external/clang/test/Parser/
cxx11-user-defined-literals.cpp 30 #if 'x'_y - u'x'_z // expected-error 2{{character literal with user-defined suffix cannot be used in preprocessor constant expression}}

Completed in 616 milliseconds

1 2 3