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

1 2

  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
aligncomm-c.s 2 .comm _h, 16
aligncomm-d.s 2 .comm _h, 16, 8
aligncomm-a.s 2 .comm _h, 16
7 .ascii " -aligncomm:_h,5"
aligncomm-b.s 2 .comm _h, 16, 8
7 .ascii " -aligncomm:_h,5"
aligncomm-a.d 9 0000 202d616c 69676e63 6f6d6d3a 5f682c35 -aligncomm:_h,5
aligncomm-b.d 9 0000 202d616c 69676e63 6f6d6d3a 225f6822 -aligncomm:"_h"
14 0050 6f6d6d3a 5f682c35 202d616c 69676e63 omm:_h,5 -alignc
  /external/clang/test/CXX/over/over.oper/over.literal/
p2.cpp 31 template<char...> void operator "" _h() {} function
33 template<> void operator "" _h<'a', 'b', 'c'>() {} function
35 template void operator "" _h<'a', 'b', 'c', 'd'>();
  /device/linaro/bootloader/arm-trusted-firmware/include/bl31/
runtime_svc.h 140 #define SMC_RET0(_h) { \
141 return (uint64_t) (_h); \
143 #define SMC_RET1(_h, _x0) { \
144 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X0, (_x0)); \
145 SMC_RET0(_h); \
147 #define SMC_RET2(_h, _x0, _x1) { \
148 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X1, (_x1)); \
149 SMC_RET1(_h, (_x0)); \
151 #define SMC_RET3(_h, _x0, _x1, _x2) { \
152 write_ctx_reg(get_gpregs_ctx(_h), CTX_GPREG_X2, (_x2));
    [all...]
  /hardware/libhardware/tests/hwc/
util.h 27 int egl_create(EGLDisplay *_display, EGLSurface *_surface, int *_w, int *_h);
util.c 165 int egl_create(EGLDisplay *_display, EGLSurface *_surface, int *_w, int *_h) {
219 *_h = h;
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 89 HwcTestDim(): _w(0), _h(0) {};
90 HwcTestDim(uint32_t w, uint32_t h) : _w(w), _h(h) {}
92 uint32_t height(void) const { return _h; }
94 void setHeight(uint32_t h) { _h = h; }
101 uint32_t _h; member in class:HwcTestDim
  /external/python/cpython2/Doc/includes/
mp_newtype.py 20 def _h(self): member in class:Foo
21 print 'you called Foo._h()'
50 # register the Foo class; make `g()` and `_h()` accessible via proxy
51 MyManager.register('Foo2', Foo, exposed=('g', '_h'))
70 assert not hasattr(f1, '_h')
77 f2._h()
79 assert sorted(f2._exposed_) == sorted(['g', '_h'])
  /external/skia/experimental/DrawingBoard/
SkColorPalette.cpp 149 float _h,r,g,b; local
153 _h = h * 6;
154 _i = (int)_h;
156 _2 = v * (1 - s * (_h - _i));
157 _3 = v * (1 - s * (1 - (_h - _i)));
  /external/libvpx/libvpx/vpx_dsp/
fastssim.c 50 static void fs_ctx_init(fs_ctx *_ctx, int _w, int _h, int _nlevels) {
57 lh = (_h + 1) >> 1;
78 lh = (_h + 1) >> 1;
141 int _s2ystride, int _w, int _h, uint32_t bd,
157 j1 = FS_MINI(j0 + 1, _h);
449 int _dystride, int _w, int _h, uint32_t _bd,
455 fs_ctx_init(&ctx, _w, _h, FS_NLEVELS);
456 fs_downsample_level0(&ctx, _src, _systride, _dst, _dystride, _w, _h, _bd,
psnrhvs.c 122 int _w, int _h, int _step, const double _csf[8][8],
158 for (y = 0; y < _h - 7; y += _step) {
  /external/libjpeg-turbo/java/
TJBench.java 425 int w = 0, h = 0, subsamp = -1, cs = -1, _w, _h, _tilew, _tileh, local
475 _w = w; _h = h; _tilew = tilew; _tileh = tileh;
481 sf.getScaled(_h));
496 _w = h; _h = w; _tilew = tileh; _tileh = tilew;
506 _h = _h - (_h % TJ.getMCUHeight(_subsamp));
512 _h = _h - (_h % TJ.getMCUWidth(_subsamp))
    [all...]
  /external/libjpeg-turbo/
tjbench.c 490 int w=0, h=0, subsamp=-1, cs=-1, _w, _h, _tilew, _tileh, local
560 _w=w; _h=h; _tilew=tilew; _tileh=tileh;
566 printf(" --> %d x %d", TJSCALED(_w, sf), TJSCALED(_h, sf));
586 _w=h; _h=w; _tilew=tileh; _tileh=tilew;
593 _h=_h-(_h%tjMCUHeight[_subsamp]);
597 _h=_h-(_h%tjMCUWidth[_subsamp])
    [all...]
  /hardware/qcom/display/msm8084/liboverlay/
overlayUtils.h 164 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h) :
166 w(_w), h(_h) {}
167 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h, uint32_t _o) :
169 w(_w), h(_h),
171 bool check(uint32_t _w, uint32_t _h) const {
172 return (x+w <= _w && y+h <= _h);
  /hardware/qcom/display/msm8226/liboverlay/
overlayUtils.h 133 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h) :
135 w(_w), h(_h) {}
136 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h, uint32_t _o) :
138 w(_w), h(_h),
140 bool check(uint32_t _w, uint32_t _h) const {
141 return (x+w <= _w && y+h <= _h);
  /hardware/qcom/display/msm8909/liboverlay/
overlayUtils.h 133 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h) :
135 w(_w), h(_h) {}
136 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h, uint32_t _o) :
138 w(_w), h(_h),
140 bool check(uint32_t _w, uint32_t _h) const {
141 return (x+w <= _w && y+h <= _h);
  /hardware/qcom/display/msm8960/liboverlay/
overlayUtils.h 160 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h) :
162 w(_w), h(_h) {}
163 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h, uint32_t _o) :
165 w(_w), h(_h),
167 bool check(uint32_t _w, uint32_t _h) const {
168 return (x+w <= _w && y+h <= _h);
  /hardware/qcom/display/msm8994/liboverlay/
overlayUtils.h 133 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h) :
135 w(_w), h(_h) {}
136 Dim(uint32_t _x, uint32_t _y, uint32_t _w, uint32_t _h, uint32_t _o) :
138 w(_w), h(_h),
140 bool check(uint32_t _w, uint32_t _h) const {
141 return (x+w <= _w && y+h <= _h);
  /external/mesa3d/src/compiler/
Android.glsl.gen.mk 73 echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
74 echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
  /external/libdrm/intel/
uthash.h     [all...]
  /external/libvncserver/test/
tjbench.c 356 int w=0, h=0, subsamp=-1, _w, _h, _tilew, _tileh, _subsamp; local
414 _w=w; _h=h; _tilew=tilew; _tileh=tileh;
420 printf(" --> %d x %d", TJSCALED(_w, sf), TJSCALED(_h, sf));
436 if(h==tileh) _tileh=_h;
437 if(decomptest(NULL, jpegbuf, jpegsize, NULL, _w, _h, _subsamp, 0,

Completed in 1011 milliseconds

1 2