HomeSort by relevance Sort by last modified time
    Searched refs:nr (Results 276 - 300 of 894) sorted by null

<<11121314151617181920>>

  /external/elfutils/libasm/
asm_newsubscn.c 38 asm_newsubscn (asmscn, nr)
40 unsigned int nr;
54 if (runp->subsection_id == nr)
58 if (runp->subnext == NULL || runp->subnext->subsection_id > nr)
72 newp->subsection_id = nr;
  /external/e2fsprogs/lib/ext2fs/
bitops.h 13 extern int ext2fs_set_bit(unsigned int nr,void * addr);
14 extern int ext2fs_clear_bit(unsigned int nr, void * addr);
15 extern int ext2fs_test_bit(unsigned int nr, const void * addr);
16 extern void ext2fs_fast_set_bit(unsigned int nr,void * addr);
17 extern void ext2fs_fast_clear_bit(unsigned int nr, void * addr);
149 _INLINE_ void ext2fs_fast_set_bit(unsigned int nr,void * addr)
153 ADDR += nr >> 3;
154 *ADDR |= (1 << (nr & 0x07));
157 _INLINE_ void ext2fs_fast_clear_bit(unsigned int nr, void * addr)
161 ADDR += nr >> 3
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_util.c 69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr )
74 stage->nr_tmps = nr;
76 if (nr != 0)
79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr );
84 stage->tmp = (struct vertex_header **) MALLOC( sizeof(struct vertex_header *) * nr );
90 for (i = 0; i < nr; i++)
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_push.c 92 unsigned size, nr; local
94 nr = push;
96 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
98 size = ctx->vertex_words * nr;
102 ctx->translate->run_elts8(ctx->translate, elts, nr, 0, ctx->push->cur);
105 count -= nr;
106 elts += nr;
108 if (nr != push) {
124 unsigned size, nr; local
126 nr = push
156 unsigned size, nr; local
    [all...]
nv40_verttex.c 52 unsigned nr, void **hwcso)
57 for (i = 0; i < nr; i++) {
67 nv30->vertprog.num_samplers = nr;
73 nv40_verttex_set_sampler_views(struct pipe_context *pipe, unsigned nr,
79 for (i = 0; i < nr; i++) {
91 nv30->vertprog.num_textures = nr;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/
nv50_push.c 69 unsigned size, nr; local
71 nr = push;
73 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
75 size = ctx->vertex_words * nr;
79 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
83 count -= nr;
84 elts += nr;
86 if (nr != push) {
102 unsigned size, nr; local
104 nr = push
135 unsigned size, nr; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_util.c 69 boolean draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr )
74 stage->nr_tmps = nr;
76 if (nr != 0)
79 ubyte *store = (ubyte *) MALLOC( MAX_VERTEX_SIZE * nr );
84 stage->tmp = (struct vertex_header **) MALLOC( sizeof(struct vertex_header *) * nr );
90 for (i = 0; i < nr; i++)
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_push.c 92 unsigned size, nr; local
94 nr = push;
96 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
98 size = ctx->vertex_words * nr;
102 ctx->translate->run_elts8(ctx->translate, elts, nr, 0, ctx->push->cur);
105 count -= nr;
106 elts += nr;
108 if (nr != push) {
124 unsigned size, nr; local
126 nr = push
156 unsigned size, nr; local
    [all...]
nv40_verttex.c 52 unsigned nr, void **hwcso)
57 for (i = 0; i < nr; i++) {
67 nv30->vertprog.num_samplers = nr;
73 nv40_verttex_set_sampler_views(struct pipe_context *pipe, unsigned nr,
79 for (i = 0; i < nr; i++) {
91 nv30->vertprog.num_textures = nr;
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_push.c 69 unsigned size, nr; local
71 nr = push;
73 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
75 size = ctx->vertex_words * nr;
79 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
83 count -= nr;
84 elts += nr;
86 if (nr != push) {
102 unsigned size, nr; local
104 nr = push
135 unsigned size, nr; local
    [all...]
  /external/kernel-headers/original/asm-arm/arch/
mtd-xip.h 31 static inline unsigned long xip_omap_mpu_timer_read(int nr)
33 volatile xip_omap_mpu_timer_regs_t* timer = xip_omap_mpu_timer_base(nr);
  /external/tcpdump/tests/
print-flags.sh 6 if (../tcpdump -$i -s0 -nr print-flags.pcap | tee print-$i.new | diff - print-$i.out)
  /hardware/qcom/audio/legacy/alsa_sound/
AudioUtil.h 21 #define BIT(nr) (1UL << (nr))
  /system/core/sh/
input.c 185 int nr; local
198 nr = 0;
200 nr = el_len;
201 if (nr > BUFSIZ - 8)
202 nr = BUFSIZ - 8;
203 memcpy(buf, rl_cp, nr);
204 if (nr != el_len) {
205 el_len -= nr;
206 rl_cp += nr;
233 nr = 0
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_eu_debug.c 62 hwreg.nr % 2 == 0 &&
69 printf("vec%d", hwreg.nr);
77 printf("scl%d.%d", hwreg.nr, hwreg.subnr / 4);
85 hwreg.nr,
  /external/linux-tools-perf/util/
cache.h 55 * at least 'nr' entries; the number of entries currently allocated
60 #define ALLOC_GROW(x, nr, alloc) \
62 if ((nr) > alloc) { \
63 if (alloc_nr(alloc) < (nr)) \
64 alloc = (nr); \
thread_map.h 7 int nr; member in struct:thread_map
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu_debug.c 62 hwreg.nr % 2 == 0 &&
69 printf("vec%d", hwreg.nr);
77 printf("scl%d.%d", hwreg.nr, hwreg.subnr / 4);
85 hwreg.nr,
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
r200_ioctl.h 64 extern void r200EmitAOS(r200ContextPtr rmesa, GLuint nr, GLuint offset);
129 #define AOS_BUFSZ(nr) ((3 + ((nr / 2) * 3) + ((nr & 1) * 2) + nr*2))
131 #define ELTS_BUFSZ(nr) (12 + nr * 2)
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_ioctl.h 64 extern void r200EmitAOS(r200ContextPtr rmesa, GLuint nr, GLuint offset);
129 #define AOS_BUFSZ(nr) ((3 + ((nr / 2) * 3) + ((nr & 1) * 2) + nr*2))
131 #define ELTS_BUFSZ(nr) (12 + nr * 2)
  /development/ndk/sources/android/libportable/common/include/
ioctls_portable.h 42 #define _IOC_PORTABLE(dir, type, nr, size) ( \
45 ((nr) << _IOC_NRSHIFT_PORTABLE) | \
57 #define _IO_PORTABLE(type, nr) _IOC_PORTABLE(_IOC_NONE_PORTABLE, (type), (nr), 0)
59 #define _IOR_PORTABLE(type, nr, size) \
60 _IOC_PORTABLE(_IOC_READ_PORTABLE, (type), (nr), (_IOC_TYPECHECK_PORTABLE(size)))
62 #define _IOW_PORTABLE(type, nr, size) \
63 _IOC_PORTABLE(_IOC_WRITE_PORTABLE, (type), (nr), (_IOC_TYPECHECK_PORTABLE(size)))
65 #define _IOWR_PORTABLE(type, nr, size) \
67 _IOC_WRITE_PORTABLE, (type), (nr), (IOC_TYPECHECK_PORTABLE(size))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i915_debug_fp.c 118 print_reg_type_nr(GLuint type, GLuint nr)
122 switch (nr) {
133 printf("T_TEX%d", nr);
137 if (nr == 0) {
143 if (nr == 0) {
152 printf("%s[%d]", regname[type], nr);
209 GLuint nr = (dword >> A2_SRC2_NR_SHIFT) & REG_NR_MASK; local
211 print_reg_type_nr(type, nr);
219 GLuint nr = (dword >> A0_DEST_NR_SHIFT) & REG_NR_MASK; local
221 print_reg_type_nr(type, nr);
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i915_debug_fp.c 118 print_reg_type_nr(GLuint type, GLuint nr)
122 switch (nr) {
133 printf("T_TEX%d", nr);
137 if (nr == 0) {
143 if (nr == 0) {
152 printf("%s[%d]", regname[type], nr);
209 GLuint nr = (dword >> A2_SRC2_NR_SHIFT) & REG_NR_MASK; local
211 print_reg_type_nr(type, nr);
219 GLuint nr = (dword >> A0_DEST_NR_SHIFT) & REG_NR_MASK; local
221 print_reg_type_nr(type, nr);
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IterationController.h 130 bool converged(double nr)
132 m_res = internal::abs(nr);
139 bool finished(double nr)
144 converged(nr);
147 return (m_nit >= m_maxiter || converged(nr));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/
nvc0_push.c 127 unsigned size, nr; local
129 nr = push;
131 nr = prim_restart_search_i08(elts, push, ctx->restart_index);
133 if (unlikely(ctx->edgeflag.buffer >= 0) && likely(nr))
136 size = ctx->vertex_words * nr;
140 ctx->translate->run_elts8(ctx->translate, elts, nr, ctx->instance_id,
147 count -= nr;
148 elts += nr;
150 if (nr != push) {
168 unsigned size, nr; local
209 unsigned size, nr; local
    [all...]

Completed in 713 milliseconds

<<11121314151617181920>>