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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 57 uint num_inst;
58 uint max_inst;
70 extern uint ppc_num_instructions(const struct ppc_function *p);
94 ppc_vaddfp(struct ppc_function *p,uint vD, uint vA, uint vB);
98 ppc_vsubfp(struct ppc_function *p, uint vD, uint vA, uint vB);
102 ppc_vminfp(struct ppc_function *p, uint vD, uint vA, uint vB)
    [all...]
rtasm_ppc.c 49 uint i;
82 uint
107 uint i;
300 emit_vx(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB,
333 emit_vxr(struct ppc_function *p, uint op2, uint vD, uint vA, uint vB
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_tile.h 46 u_clip_tile(uint x, uint y, uint *w, uint *h, const struct pipe_box *box)
66 uint x, uint y, uint w, uint h,
72 uint x, uint y, uint w, uint h
    [all...]
u_draw_quad.h 47 struct pipe_resource *vbuf, uint offset,
48 uint num_attribs, uint num_verts, uint prim_type);
52 uint prim_type, uint num_verts, uint num_attribs);
u_gen_mipmap.h 57 uint layer, uint baseLevel, uint lastLevel, uint filter);
u_draw.h 52 util_draw_arrays(struct pipe_context *pipe, uint mode, uint start, uint count)
68 uint mode, uint start, uint count)
84 uint mode, uint start, uint count,
85 uint start_instance
    [all...]
u_simple_shaders.h 48 uint num_attribs,
49 const uint *semantic_names,
50 const uint *semantic_indexes);
54 uint num_attribs,
55 const uint *semantic_names,
56 const uint *semantic_indexes,
  /frameworks/av/media/libstagefright/codecs/avc/common/include/
avcint_common.h 233 uint cpb_cnt_minus1; /* ue(v), range 0..31 */
234 uint bit_rate_scale; /* u(4) */
235 uint cpb_size_scale; /* u(4) */
238 uint cbr_flag[MAXIMUMVALUEOFcpb_cnt]; /* u(1) */
239 uint initial_cpb_removal_delay_length_minus1; /* u(5), default 23 */
240 uint cpb_removal_delay_length_minus1; /* u(5), default 23 */
241 uint dpb_output_delay_length_minus1; /* u(5), default 23 */
242 uint time_offset_length; /* u(5), default 24 */
252 uint aspect_ratio_info_present_flag; /* u(1) */
253 uint aspect_ratio_idc; /* u(8), table E-1 *
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
hndrte_cons.h 31 uint buf_size;
32 uint idx;
43 volatile uint vcons_in;
44 volatile uint vcons_out;
57 uint cbuf_idx;
dhdioctl.h 38 uint cmd; /* common ioctl definition */
40 uint len; /* length of user buffer */
42 uint used; /* bytes read or written (optional) */
43 uint needed; /* bytes needed (optional) */
44 uint driver; /* to identify target driver */
92 uint version; /* To allow structure change tracking */
93 uint freq; /* Max ticks between tx/rx attempts */
94 uint count; /* Test packets to send/rcv each attempt */
95 uint print; /* Print counts every <print> attempts */
96 uint total; /* Total packets (or bursts) *
    [all...]
  /external/lzma/CS/7zip/Common/
CRC.cs 7 public static readonly uint[] Table;
11 Table = new uint[256];
12 const uint kPoly = 0xEDB88320;
13 for (uint i = 0; i < 256; i++)
15 uint r = i;
25 uint _value = 0xFFFFFFFF;
34 public void Update(byte[] data, uint offset, uint size)
36 for (uint i = 0; i < size; i++)
40 public uint GetDigest() { return _value ^ 0xFFFFFFFF; }
    [all...]
  /external/vulkan-validation-layers/libs/glm/detail/
func_packing.hpp 58 GLM_FUNC_DECL uint packUnorm2x16(vec2 const & v);
71 GLM_FUNC_DECL uint packSnorm2x16(vec2 const & v);
84 GLM_FUNC_DECL uint packUnorm4x8(vec4 const & v);
97 GLM_FUNC_DECL uint packSnorm4x8(vec4 const & v);
110 GLM_FUNC_DECL vec2 unpackUnorm2x16(uint const & p);
123 GLM_FUNC_DECL vec2 unpackSnorm2x16(uint const & p);
136 GLM_FUNC_DECL vec4 unpackUnorm4x8(uint const & p);
149 GLM_FUNC_DECL vec4 unpackSnorm4x8(uint const & p);
178 GLM_FUNC_DECL uint packHalf2x16(vec2 const & v);
188 GLM_FUNC_DECL vec2 unpackHalf2x16(uint const & v)
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
integer.hpp 85 GLM_FUNC_DECL uint pow(uint x, uint y);
89 GLM_FUNC_DECL uint sqrt(uint x);
93 GLM_FUNC_DECL uint mod(uint x, uint y);
97 GLM_FUNC_DECL uint nlz(uint x)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_info.h 82 uint opcode;
86 tgsi_get_opcode_info( uint opcode );
89 tgsi_get_opcode_name( uint opcode );
92 tgsi_get_processor_name( uint processor );
104 tgsi_opcode_infer_src_type( uint opcode );
107 tgsi_opcode_infer_dst_type( uint opcode );
tgsi_dump.h 42 uint flags,
49 uint flags );
63 uint instno );
tgsi_text.h 43 uint num_tokens );
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaBase.cs 7 public const uint kNumRepDistances = 4;
8 public const uint kNumStates = 12;
17 public uint Index;
25 public void UpdateMatch() { Index = (uint)(Index < 7 ? 7 : 10); }
26 public void UpdateRep() { Index = (uint)(Index < 7 ? 8 : 11); }
27 public void UpdateShortRep() { Index = (uint)(Index < 7 ? 9 : 11); }
34 // public const uint kDistTableSizeMax = kDicLogSizeMax * 2;
37 public const uint kNumLenToPosStates = 1 << kNumLenToPosStatesBits;
39 public const uint kMatchMinLen = 2;
41 public static uint GetLenToPosState(uint len)
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Uint.java 22 public final class Uint implements Comparable<Uint> {
25 public Uint(int value) {
29 public int compareTo(Uint uint) {
30 return Unsigned.compare(intValue, uint.intValue);
  /external/mesa3d/src/gallium/drivers/i915/
i915_fpc.h 56 uint num_immediates;
57 uint immediates_map[I915_MAX_CONSTANT];
62 uint declarations[I915_PROGRAM_SIZE];
63 uint program[I915_PROGRAM_SIZE];
65 uint *csr; /**< Cursor, points into program. */
67 uint *decl; /**< Cursor, points into declarations. */
69 uint decl_s; /**< flags for which s regs need to be decl'd */
70 uint decl_t; /**< flags for which t regs need to be decl'd */
72 uint temp_flag; /**< Tracks temporary regs which are in use */
73 uint utemp_flag; /**< Tracks TYPE_U temporary regs which are in use *
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
simd_functions.hpp 136 __device__ __forceinline__ uint vadd2(uint a, uint b)
138 uint r = 0;
146 uint s;
157 __device__ __forceinline__ uint vsub2(uint a, uint b)
159 uint r = 0;
167 uint s
    [all...]
  /external/mesa3d/src/gallium/drivers/trace/
tr_dump_state.c 78 trace_dump_member(uint, templat, last_level);
79 trace_dump_member(uint, templat, usage);
80 trace_dump_member(uint, templat, bind);
81 trace_dump_member(uint, templat, flags);
99 trace_dump_member(uint, box, x);
100 trace_dump_member(uint, box, y);
101 trace_dump_member(uint, box, z);
102 trace_dump_member(uint, box, width);
103 trace_dump_member(uint, box, height);
104 trace_dump_member(uint, box, depth)
    [all...]
  /external/ltrace/etc/
syscalls.conf 21 int open(string, hex(uint), oct(uint));
22 int personality(uint);
29 int setxattr(string,string,addr,uint,int);
30 int lsetxattr(string,string,addr,uint,int);
31 int fsetxattr(int,string,addr,uint,int);
32 int getxattr(string,string,addr,uint);
33 int lgetxattr(string,string,addr,uint);
34 int fgetxattr(int,string,addr,uint);
35 int listxattr(string,addr,uint);
    [all...]
  /external/opencv3/modules/cudaarithm/src/cuda/
cmp_mat.cu 85 struct VCmpEq4 : binary_function<uint, uint, uint>
87 __device__ __forceinline__ uint operator ()(uint a, uint b) const
92 struct VCmpNe4 : binary_function<uint, uint, uint>
94 __device__ __forceinline__ uint operator ()(uint a, uint b) cons
    [all...]
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 7 public const uint kTopValue = (1 << 24);
12 public uint Range;
13 uint _cacheSize;
54 public void Encode(uint start, uint size, uint total)
67 if ((uint)Low < (uint)0xFF000000 || (uint)(Low >> 32) == 1)
76 _cache = (byte)(((uint)Low) >> 24);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_modeset.h 72 uint width, uint height);
83 struct native_surface *nsurf, uint x, uint y,

Completed in 854 milliseconds

1 2 3 4 5 6 7 8 91011>>