Searched refs:nr (Results 276 - 300 of 396) sorted by relevance

<<111213141516

/external/seccomp-tests/linux/
H A Dseccomp_bpf.c83 int nr; member in struct:seccomp_data
410 offsetof(struct seccomp_data, nr)),
438 offsetof(struct seccomp_data, nr)),
478 offsetof(struct seccomp_data, nr)),
548 offsetof(struct seccomp_data, nr)),
575 offsetof(struct seccomp_data, nr)),
602 offsetof(struct seccomp_data, nr)),
633 offsetof(struct seccomp_data, nr)),
681 static void TRAP_action(int nr, siginfo_t *info, void *void_context) argument
684 TRAP_nr = nr;
[all...]
/external/fio/
H A Dio_u.c17 int nr; /* input */ member in struct:io_completion_data
793 static void __io_u_mark_map(unsigned int *map, unsigned int nr) argument
797 switch (nr) {
822 void io_u_mark_submit(struct thread_data *td, unsigned int nr) argument
824 __io_u_mark_map(td->ts.io_u_submit, nr);
828 void io_u_mark_complete(struct thread_data *td, unsigned int nr) argument
830 __io_u_mark_map(td->ts.io_u_complete, nr);
834 void io_u_mark_depth(struct thread_data *td, unsigned int nr) argument
860 td->ts.io_u_map[idx] += nr;
1724 int nr)
1723 init_icd(struct thread_data *td, struct io_completion_data *icd, int nr) argument
[all...]
H A Doptions.c328 char *nr; local
336 nr = get_opt_postfix(str);
337 if (!nr)
341 o->ddir_seq_nr = atoi(nr);
345 if (str_to_decimal(nr, &val, 1, o, 0, 0)) {
347 free(nr);
354 free(nr);
681 char *nr = get_opt_postfix(str); local
684 if (nr) {
685 td->file_service_nr = atoi(nr);
696 char *nr = get_opt_postfix(str); local
712 char *nr; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_interp.c136 LLVMValueRef nr, pixxf, pixyf; local
142 nr = lp_build_const_int32(gallivm, i);
147 *pixoffx = LLVMBuildInsertElement(builder, *pixoffx, pixxf, nr, "");
148 *pixoffy = LLVMBuildInsertElement(builder, *pixoffy, pixyf, nr, "");
378 LLVMValueRef nr = lp_build_const_int32(gallivm, i); local
381 pixoffx = LLVMBuildInsertElement(builder, pixoffx, pixxf, nr, "");
382 pixoffy = LLVMBuildInsertElement(builder, pixoffy, pixyf, nr, "");
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_fs_emit.cpp158 delta_y.nr == delta_x.nr + 1 &&
159 (intel->gen >= 6 || (delta_x.nr & 1) == 0)) {
457 struct brw_reg src0 = brw_reg(src.file, src.nr, 1,
463 struct brw_reg src1 = brw_reg(src.file, src.nr, 0,
480 struct brw_reg src0 = brw_reg(src.file, src.nr, 0,
486 struct brw_reg src1 = brw_reg(src.file, src.nr, 2,
H A Dbrw_fs_visitor.cpp2042 int nr = base_mrf; local
2072 nr += 2;
2077 emit(BRW_OPCODE_MOV, fs_reg(MRF, nr++),
2083 int color_mrf = nr;
2084 nr += 4 * reg_width;
2086 nr += 4;
2088 nr += reg_width;
2105 emit(BRW_OPCODE_MOV, fs_reg(MRF, nr), depth);
2108 emit(BRW_OPCODE_MOV, fs_reg(MRF, nr),
2111 nr
[all...]
H A Dbrw_curbe.c252 GLuint nr = brw->vs.prog_data->nr_params / 4; local
264 assert(brw->vs.constant_map[i] <= nr);
/external/libxml2/
H A Dtestapi.c97 static int nr = 0; local
112 snprintf((char *) name, 20, "foo%d", nr++);
216 static void *gen_void_ptr(int no ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
219 static void des_void_ptr(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
225 static const void *gen_const_void_ptr(int no, int nr ATTRIBUTE_UNUSED) {
229 static void des_const_void_ptr(int no ATTRIBUTE_UNUSED, const void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
235 static void *gen_userdata(int no, int nr ATTRIBUTE_UNUSED) {
240 static void des_userdata(int no ATTRIBUTE_UNUSED, void *val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSED) {
246 static int gen_int(int no, int nr ATTRIBUTE_UNUSED) {
254 static void des_int(int no ATTRIBUTE_UNUSED, int val ATTRIBUTE_UNUSED, int nr ATTRIBUTE_UNUSE
337 gen_unsigned_long_ptr(int no, int nr) argument
347 gen_int_ptr(int no, int nr) argument
[all...]
H A Dxmlmemory.c858 * @nr: number of entries to dump
861 * the @nr last allocated areas which were not freed
865 xmlMemShow(FILE *fp, int nr ATTRIBUTE_UNUSED)
876 if (nr > 0) {
879 while ((p) && nr > 0) {
895 nr--;
/external/iputils/
H A Dping6.c111 #define BIT_CLEAR(nr, addr) do { ((__u32 *)(addr))[(nr) >> 5] &= ~(1U << ((nr) & 31)); } while(0)
112 #define BIT_SET(nr, addr) do { ((__u32 *)(addr))[(nr) >> 5] |= (1U << ((nr) & 31)); } while(0)
113 #define BIT_TEST(nr, addr) do { (__u32 *)(addr))[(nr) >> 5] & (1U << ((nr) & 31)); } while(0)
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pt_fetch_shade_pipeline_llvm.c81 const unsigned nr = MAX2( shader->base.info.num_inputs, local
91 fpme->vertex_size = sizeof(struct vertex_header) + nr * 4 * sizeof(float);
162 variant = draw_llvm_create_variant(fpme->llvm, nr, key);
H A Ddraw_pt_fetch_shade_pipeline.c72 unsigned nr = MAX2( vs->info.num_inputs, local
91 fpme->vertex_size = sizeof(struct vertex_header) + nr * 4 * sizeof(float);
/external/eigen/Eigen/src/Core/products/
H A DParallelizer.h107 // This first heuristic takes into account that the product kernel is fully optimized when working with nr columns at once.
109 Index pb_max_threads = std::max<Index>(1,size / Functor::Traits::nr);
/external/iproute2/misc/
H A Dnstat.c124 int nr; local
137 nr = sscanf(buf, "%s%llu%lg", idbuf, &val, &rate);
138 if (nr < 2)
140 if (nr < 3)
/external/libchrome/sandbox/linux/seccomp-bpf/
H A Dsandbox_bpf.cc214 args.nr, static_cast<intptr_t>(args.args[0]),
/external/libdrm/
H A Dxf86drm.h57 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
67 #define DRM_IOC(dir, group, nr, size) _IOC(dir, group, nr, size)
/external/svox/pico/lib/
H A Dpicokdt.h127 picoos_uint8 nr; /* 0 if no class set, nr of values set otherwise */ member in struct:__anon18165
332 5 nr words left
333 6 nr words right
334 7 nr syllables right
380 7 nr words left (previous) to any bound
381 8 nr syllables left to any bound
382 9 nr words right (following) to any bound
383 10 nr syllables right to any bound
384 11 nr word
[all...]
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_api.c70 exec->vtx.copied.nr = 0;
93 exec->vtx.copied.nr = 0;
106 if (exec->vtx.copied.nr == last_count)
134 assert(exec->vtx.max_vert - exec->vtx.vert_count > exec->vtx.copied.nr);
136 for (i = 0 ; i < exec->vtx.copied.nr ; i++) {
144 exec->vtx.copied.nr = 0;
254 if (unlikely(exec->vtx.copied.nr)) {
318 if (unlikely(exec->vtx.copied.nr)) {
325 for (i = 0 ; i < exec->vtx.copied.nr ; i++) {
356 exec->vtx.vert_count += exec->vtx.copied.nr;
[all...]
/external/minijail/
H A Dminijail0.c188 for (; entry->name && entry->nr >= 0; ++entry)
189 printf(" %s [%d]\n", entry->name, entry->nr);
/external/pdfium/core/fxcodec/codec/
H A Dfx_codec_jpx_opj.cpp335 int* nr = nullptr; local
342 nr = r + yw;
356 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
358 ++nr;
361 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
363 ++nr;
379 sycc_to_rgb(offset, upb, *ny, *cb, *cr, nr, ng, nb);
381 ++nr;
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_swtcl.c379 static void* radeon_alloc_verts( r100ContextPtr rmesa , GLuint nr, GLuint size ) argument
384 rv = rcommonAllocDmaLowVerts( &rmesa->radeon, nr, size );
396 #define ALLOC_VERTS( nr ) radeon_alloc_verts( rmesa, nr, rmesa->radeon.swtcl.vertex_size * 4 )
397 #define EMIT_VERTS( ctx, j, nr, buf ) \
398 _tnl_emit_vertices_to_buffer(ctx, j, (j)+(nr), buf)
/external/webrtc/webrtc/test/channel_transport/
H A Dudp_transport_impl.cc2941 char nr[4]; local
2942 memset(nr,0,4);
2943 strncpy(nr,&ipadr[0],iDotPos[0]);
2944 int32_t num = atoi(nr);
2955 char nr[4]; local
2956 memset(nr,0,4);
2957 strncpy(nr,&ipadr[iDotPos[0]+1], iDotPos[1] - iDotPos[0] - 1);
2958 int32_t num = atoi(nr);
2967 char nr[4]; local
2968 memset(nr,
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dhostapd.c1574 struct wpabuf *nr; local
1633 nr = wpabuf_alloc(ETH_ALEN + 4 + 1 + 1 + 1 + 5);
1634 if (!nr)
1637 wpabuf_put_data(nr, hapd->own_addr, ETH_ALEN);
1638 wpabuf_put_le32(nr, bssid_info);
1639 wpabuf_put_u8(nr, op_class);
1640 wpabuf_put_u8(nr, channel);
1641 wpabuf_put_u8(nr, ieee80211_get_phy_type(hapd->iface->freq, ht, vht));
1648 wpabuf_put_u8(nr, WNM_NEIGHBOR_WIDE_BW_CHAN);
1649 wpabuf_put_u8(nr,
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dhostapd.c1574 struct wpabuf *nr; local
1633 nr = wpabuf_alloc(ETH_ALEN + 4 + 1 + 1 + 1 + 5);
1634 if (!nr)
1637 wpabuf_put_data(nr, hapd->own_addr, ETH_ALEN);
1638 wpabuf_put_le32(nr, bssid_info);
1639 wpabuf_put_u8(nr, op_class);
1640 wpabuf_put_u8(nr, channel);
1641 wpabuf_put_u8(nr, ieee80211_get_phy_type(hapd->iface->freq, ht, vht));
1648 wpabuf_put_u8(nr, WNM_NEIGHBOR_WIDE_BW_CHAN);
1649 wpabuf_put_u8(nr,
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dhostapd.c1574 struct wpabuf *nr; local
1633 nr = wpabuf_alloc(ETH_ALEN + 4 + 1 + 1 + 1 + 5);
1634 if (!nr)
1637 wpabuf_put_data(nr, hapd->own_addr, ETH_ALEN);
1638 wpabuf_put_le32(nr, bssid_info);
1639 wpabuf_put_u8(nr, op_class);
1640 wpabuf_put_u8(nr, channel);
1641 wpabuf_put_u8(nr, ieee80211_get_phy_type(hapd->iface->freq, ht, vht));
1648 wpabuf_put_u8(nr, WNM_NEIGHBOR_WIDE_BW_CHAN);
1649 wpabuf_put_u8(nr,
[all...]

Completed in 840 milliseconds

<<111213141516