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

1 2 3 4 5 6 7 8 9

  /external/mesa3d/src/gallium/auxiliary/draw/
draw_vbuf.h 85 ushort vertex_size,
86 ushort nr_vertices );
90 ushort min_index,
91 ushort max_index );
102 * Draw indexed primitives. Note that indices are ushort. The driver
106 const ushort *indices,
draw_pt_vsplit.c 48 ushort segment_size;
52 ushort draw_elts[SEGMENT_SIZE];
53 ushort identity_draw_elts[SEGMENT_SIZE];
58 ushort draws[MAP_SIZE];
61 ushort num_fetch_elts;
62 ushort num_draw_elts;
144 vsplit_add_cache_ushort(struct vsplit_frontend *vsplit, const ushort *elts,
189 #define ELT_TYPE ushort
254 ushort i;
draw_pt_fetch_shade_emit.c 203 (ushort)fse->key.output_stride,
204 (ushort)count ))
231 draw->render->unmap_vertices( draw->render, 0, (ushort)(count - 1) );
254 const ushort *draw_elts,
267 (ushort)fse->key.output_stride,
268 (ushort)fetch_count ))
292 draw->render->unmap_vertices( draw->render, 0, (ushort)(fetch_count - 1) );
312 const ushort *draw_elts,
325 (ushort)fse->key.output_stride,
326 (ushort)count )
    [all...]
draw_pt_fetch_emit.c 193 const ushort *draw_elts,
206 (ushort)feme->translate->key.output_stride,
207 (ushort)fetch_count );
235 (ushort)(fetch_count - 1) );
265 (ushort)feme->translate->key.output_stride,
266 (ushort)count ))
312 const ushort *draw_elts,
325 (ushort)feme->translate->key.output_stride,
326 (ushort)count ))
342 draw->render->unmap_vertices( draw->render, 0, (ushort)(count - 1) )
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_quad_depth_test_tmp.h 62 ushort (*depth16)[TILE_SIZE];
63 ushort init_idepth[4], idepth[4], depth_step;
67 init_idepth[0] = (ushort)((z0) * scale);
68 init_idepth[1] = (ushort)((z0 + dzdx) * scale);
69 init_idepth[2] = (ushort)((z0 + dzdy) * scale);
70 init_idepth[3] = (ushort)((z0 + dzdx + dzdy) * scale);
72 depth_step = (ushort)(dzdx * scale);
87 depth16 = (ushort (*)[TILE_SIZE])
133 depth16 = (ushort (*)[TILE_SIZE]) &depth16[0][2];
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
constant.rs 28 const ushort ushortTest = 16;
  /prebuilts/go/darwin-x86/misc/cgo/errors/src/
issue13129.go 12 var x C.ushort
13 x = int(0) // ERROR HERE: C\.ushort
issue13635.go 16 _ C.ushort = "us" // ERROR HERE: C\.ushort
  /prebuilts/go/linux-x86/misc/cgo/errors/src/
issue13129.go 12 var x C.ushort
13 x = int(0) // ERROR HERE: C\.ushort
issue13635.go 16 _ C.ushort = "us" // ERROR HERE: C\.ushort
  /external/mesa3d/src/gallium/auxiliary/indices/
u_unfilled_indices.c 44 ushort *out_us = (ushort *)out;
47 out_us[i] = (ushort) in_ub[i+start];
75 ushort *out_us = (ushort *)out;
78 out_us[i] = (ushort)(i + start);
  /external/flatbuffers/net/FlatBuffers/
ByteBuffer.cs 73 static public ushort ReverseBytes(ushort input)
75 return (ushort)(((input & 0x00FFU) << 8) |
178 PutUshort(offset, (ushort)value);
181 public unsafe void PutUshort(int offset, ushort value)
183 AssertOffsetAndLength(offset, sizeof(ushort));
186 *(ushort*)(ptr + offset) = BitConverter.IsLittleEndian
264 public void PutUshort(int offset, ushort value)
266 AssertOffsetAndLength(offset, sizeof(ushort));
267 WriteLittleEndian(offset, sizeof(ushort), (ulong)value)
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_pxm.cpp 280 ((ushort *)src)[x] = (ushort)code;
301 int v = ((ushort *)src)[x];
315 ushort *d = (ushort *)data, *s = (ushort *)src, *end = ((ushort *)src) + m_width;
332 icvCvt_RGB2BGR_16u_C3R( (ushort *)src, 0, (ushort *)data, 0, cvSize(m_width,1) );
337 icvCvt_BGR2Gray_16u_C3C1R( (ushort *)src, 0, (ushort *)data, 0, cvSize(m_width,1), 2 )
    [all...]
utils.cpp 102 void icvCvt_BGR2Gray_16u_C3C1R( const ushort* rgb, int rgb_step,
103 ushort* gray, int gray_step,
113 gray[i] = (ushort)t;
211 void icvCvt_BGR2RGB_16u_C3R( const ushort* bgr, int bgr_step,
212 ushort* rgb, int rgb_step, CvSize size )
219 ushort t0 = bgr[0], t1 = bgr[1], t2 = bgr[2];
228 typedef unsigned short ushort; typedef
238 int t = descale( ((((ushort*)bgr555)[i] << 3) & 0xf8)*cB +
239 ((((ushort*)bgr555)[i] >> 2) & 0xf8)*cG +
240 ((((ushort*)bgr555)[i] >> 7) & 0xf8)*cR, SCALE )
    [all...]
utils.h 58 void icvCvt_BGR2Gray_16u_C3C1R( const ushort* bgr, int bgr_step,
59 ushort* gray, int gray_step,
75 void icvCvt_BGR2RGB_16u_C3R( const ushort* bgr, int bgr_step,
76 ushort* rgb, int rgb_step, CvSize size );
  /external/mesa3d/src/gallium/drivers/svga/
svga_swtnl_private.h 76 ushort min_index;
77 ushort max_index;
  /external/opencv/cvaux/src/
_cvaux.h 52 typedef unsigned short ushort; typedef
  /frameworks/rs/driver/runtime/
rs_convert.c 35 CVT_FUNC_2(type, ushort) \
48 CVT_FUNC(ushort)
  /frameworks/rs/tests/lldb/cpp/Allocations/
allocs.rs 27 uint __attribute__((kernel)) square_kernel(ushort in)
  /frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
allocs.rs 27 uint __attribute__((kernel)) square_kernel(ushort in)
  /external/mesa3d/docs/specs/OLD/
MESA_packed_depth_stencil.spec 114 UNSIGNED_SHORT_5_6_5 ushort 3 RGB
115 UNSIGNED_SHORT_5_6_5_REV ushort 3 RGB
116 UNSIGNED_SHORT_4_4_4_4 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
117 UNSIGNED_SHORT_4_4_4_4_REV ushort 4 RGBA,BGRA
118 UNSIGNED_SHORT_5_5_5_1 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
119 UNSIGNED_SHORT_1_5_5_5_REV ushort 4 RGBA,BGRA
124 UNSIGNED_SHORT_15_1_MESA ushort 2 DEPTH_STENCIL_MESA
125 UNSIGNED_SHORT_1_15_REV_MESA ushort 2 DEPTH_STENCIL_MESA
126 UNSIGNED_SHORT_24_8_MESA ushort 2 DEPTH_STENCIL_MESA
127 UNSIGNED_SHORT_8_24_REV_MESA ushort 2 DEPTH_STENCIL_MES
    [all...]
  /external/flatbuffers/tests/MyGame/Example/
Stat.cs 24 public ushort Count { get { int o = __p.__offset(8); return o != 0 ? __p.bb.GetUshort(o + __p.bb_pos) : (ushort)0; } }
25 public bool MutateCount(ushort count) { int o = __p.__offset(8); if (o != 0) { __p.bb.PutUshort(o + __p.bb_pos, count); return true; } else { return false; } }
30 ushort count = 0) {
41 public static void AddCount(FlatBufferBuilder builder, ushort count) { builder.AddUshort(2, count, 0); }
  /external/opencv/cv/src/
cvsmooth.cpp 548 ushort coarse[16];
549 ushort fine[16][16];
558 *((ushort*) h.fine + x) op;
575 static inline void histogram_add( const ushort x[16], ushort y[16] )
583 static inline void histogram_add( const ushort x[16], ushort y[16] )
591 static inline void histogram_add( const ushort x[16], ushort y[16] )
593 *(vector ushort*) &y[0] = vec_add( *(vector ushort*) &y[0], *(vector ushort*) &x[0] )
    [all...]
  /external/flatbuffers/tests/FlatBuffers.Test/
FuzzTestData.cs 30 public static readonly ushort UInt16Value = 65262; // 0xFEEE
  /prebuilts/misc/common/swig/include/2.0.11/csharp/
arrays_csharp.i 94 CSHARP_ARRAYS(unsigned short, ushort)
128 CSHARP_ARRAYS_FIXED(unsigned short, ushort)

Completed in 327 milliseconds

1 2 3 4 5 6 7 8 9