Searched refs:nr (Results 1 - 25 of 396) sorted by relevance

1234567891011>>

/external/ltp/testcases/realtime/perf/latency/
H A Dpthread_cond_many_histogram.sh12 }' | sort +0nr
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dneighbor_db.c21 struct hostapd_neighbor_entry *nr; local
23 dl_list_for_each(nr, &hapd->nr_db, struct hostapd_neighbor_entry,
25 if (os_memcmp(bssid, nr->bssid, ETH_ALEN) == 0 &&
27 (ssid->ssid_len == nr->ssid.ssid_len &&
28 os_memcmp(ssid->ssid, nr->ssid.ssid,
30 return nr;
36 static void hostapd_neighbor_clear_entry(struct hostapd_neighbor_entry *nr) argument
38 wpabuf_free(nr->nr);
39 nr
53 struct hostapd_neighbor_entry *nr; local
65 hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, const struct wpa_ssid_value *ssid, const struct wpabuf *nr, const struct wpabuf *lci, const struct wpabuf *civic, int stationary) argument
112 struct hostapd_neighbor_entry *nr; local
128 struct hostapd_neighbor_entry *nr, *prev; local
[all...]
/external/wpa_supplicant_8/src/ap/
H A Dneighbor_db.c21 struct hostapd_neighbor_entry *nr; local
23 dl_list_for_each(nr, &hapd->nr_db, struct hostapd_neighbor_entry,
25 if (os_memcmp(bssid, nr->bssid, ETH_ALEN) == 0 &&
27 (ssid->ssid_len == nr->ssid.ssid_len &&
28 os_memcmp(ssid->ssid, nr->ssid.ssid,
30 return nr;
36 static void hostapd_neighbor_clear_entry(struct hostapd_neighbor_entry *nr) argument
38 wpabuf_free(nr->nr);
39 nr
53 struct hostapd_neighbor_entry *nr; local
65 hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, const struct wpa_ssid_value *ssid, const struct wpabuf *nr, const struct wpabuf *lci, const struct wpabuf *civic, int stationary) argument
112 struct hostapd_neighbor_entry *nr; local
128 struct hostapd_neighbor_entry *nr, *prev; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dneighbor_db.c21 struct hostapd_neighbor_entry *nr; local
23 dl_list_for_each(nr, &hapd->nr_db, struct hostapd_neighbor_entry,
25 if (os_memcmp(bssid, nr->bssid, ETH_ALEN) == 0 &&
27 (ssid->ssid_len == nr->ssid.ssid_len &&
28 os_memcmp(ssid->ssid, nr->ssid.ssid,
30 return nr;
36 static void hostapd_neighbor_clear_entry(struct hostapd_neighbor_entry *nr) argument
38 wpabuf_free(nr->nr);
39 nr
53 struct hostapd_neighbor_entry *nr; local
65 hostapd_neighbor_set(struct hostapd_data *hapd, const u8 *bssid, const struct wpa_ssid_value *ssid, const struct wpabuf *nr, const struct wpabuf *lci, const struct wpabuf *civic, int stationary) argument
112 struct hostapd_neighbor_entry *nr; local
128 struct hostapd_neighbor_entry *nr, *prev; local
[all...]
/external/ltp/testcases/kernel/syscalls/ptrace/
H A Dsyscalls.h2 long nr; member in struct:sysnums
5 #define P(NR) { .nr = SYS_##NR, .snr = #NR, },
10 const char *get_sysnum(long nr) argument
14 if (sysnums[i].nr == nr)
/external/kernel-headers/original/uapi/asm-generic/
H A Dioctl.h65 #define _IOC(dir,type,nr,size) \
68 ((nr) << _IOC_NRSHIFT) | \
76 #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
77 #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),(_IOC_TYPECHECK(size)))
78 #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),(_IOC_TYPECHECK(size)))
79 #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),(_IOC_TYPECHEC
[all...]
/external/autotest/client/bin/input/
H A Dlinux_ioctl.py45 def IOC(d, t, nr, size):
47 (nr << _IOC_NRSHIFT) | (size << _IOC_SIZESHIFT))
50 def IO(t, nr, t_format):
51 return IOC(IOC_NONE, t, nr, 0)
53 def IOW(t, nr, t_format):
54 return IOC(IOC_WRITE, t, nr, sizeof(t_format))
56 def IOR(t, nr, t_format):
57 return IOC(IOC_READ, t, nr, sizeof(t_format))
59 def IOWR(t, nr, t_format):
60 return IOC(IOC_READ|_IOC_WRITE, t, nr, sizeo
[all...]
/external/mesa3d/src/mesa/main/
H A Denums.h43 extern const char *_mesa_lookup_enum_by_nr( int nr );
48 const char *_mesa_lookup_prim_by_nr( unsigned nr );
/external/libnetfilter_conntrack/include/internal/
H A Dbitops.h7 static inline void set_bit(int nr, uint32_t *addr) argument
9 addr[nr >> 5] |= (1UL << (nr & 31));
12 static inline void unset_bit(int nr, uint32_t *addr) argument
14 addr[nr >> 5] &= ~(1UL << (nr & 31));
17 static inline void set_bit_u16(int nr, uint16_t *addr) argument
19 addr[nr >> 4] |= (1UL << (nr & 15));
22 static inline void unset_bit_u16(int nr, uint16_ argument
45 test_bit(int nr, const uint32_t *addr) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_prim.h40 static INLINE boolean u_validate_pipe_prim( unsigned pipe_prim, unsigned nr )
46 ok = (nr >= 1);
49 ok = (nr >= 2);
53 ok = (nr >= 2);
56 ok = (nr >= 3);
61 ok = (nr >= 3);
64 ok = (nr >= 4);
67 ok = (nr >= 4);
78 static INLINE boolean u_trim_pipe_prim( unsigned pipe_prim, unsigned *nr )
99 *nr
[all...]
/external/mesa3d/src/gallium/auxiliary/indices/
H A Du_unfilled_indices.c30 unsigned nr,
36 for (i = 0; i < nr; i++)
41 unsigned nr,
44 memcpy(out, in, nr*sizeof(short));
48 unsigned nr,
51 memcpy(out, in, nr*sizeof(int));
55 static void generate_linear_ushort( unsigned nr, argument
60 for (i = 0; i < nr; i++)
64 static void generate_linear_uint( unsigned nr, argument
69 for (i = 0; i < nr;
29 translate_ubyte_ushort( const void *in, unsigned nr, void *out ) argument
40 translate_memcpy_ushort( const void *in, unsigned nr, void *out ) argument
47 translate_memcpy_uint( const void *in, unsigned nr, void *out ) argument
103 u_unfilled_translator( unsigned prim, unsigned in_index_size, unsigned nr, unsigned unfilled_mode, unsigned *out_prim, unsigned *out_index_size, unsigned *out_nr, u_translate_func *out_translate ) argument
155 u_unfilled_generator( unsigned prim, unsigned start, unsigned nr, unsigned unfilled_mode, unsigned *out_prim, unsigned *out_index_size, unsigned *out_nr, u_generate_func *out_generate ) argument
[all...]
H A Du_indices.h35 unsigned nr,
38 typedef void (*u_generate_func)( unsigned nr,
58 unsigned nr,
74 unsigned nr,
87 unsigned nr,
96 unsigned nr,
H A Du_indices.c29 unsigned nr,
32 memcpy(out, in, nr*sizeof(short));
36 unsigned nr,
39 memcpy(out, in, nr*sizeof(int));
46 unsigned nr,
74 *out_nr = nr;
83 *out_nr = nr;
89 *out_nr = nr;
95 *out_nr = (nr - 1) * 2;
101 *out_nr = nr *
28 translate_memcpy_ushort( const void *in, unsigned nr, void *out ) argument
35 translate_memcpy_uint( const void *in, unsigned nr, void *out ) argument
43 u_index_translator( unsigned hw_mask, unsigned prim, unsigned in_index_size, unsigned nr, unsigned in_pv, unsigned out_pv, unsigned *out_prim, unsigned *out_index_size, unsigned *out_nr, u_translate_func *out_translate ) argument
156 u_index_generator( unsigned hw_mask, unsigned prim, unsigned start, unsigned nr, unsigned in_pv, unsigned out_pv, unsigned *out_prim, unsigned *out_index_size, unsigned *out_nr, u_generate_func *out_generate ) argument
[all...]
/external/minijail/
H A Dlibsyscalls.h11 int nr; member in struct:syscall_entry
/external/e2fsprogs/lib/ext2fs/
H A Dbitops.c34 int ext2fs_set_bit(unsigned int nr,void * addr) argument
39 ADDR += nr >> 3;
40 mask = 1 << (nr & 0x07);
46 int ext2fs_clear_bit(unsigned int nr, void * addr) argument
51 ADDR += nr >> 3;
52 mask = 1 << (nr & 0x07);
58 int ext2fs_test_bit(unsigned int nr, const void * addr) argument
63 ADDR += nr >> 3;
64 mask = 1 << (nr & 0x07);
85 int ext2fs_set_bit64(__u64 nr, voi argument
97 ext2fs_clear_bit64(__u64 nr, void * addr) argument
109 ext2fs_test_bit64(__u64 nr, const void * addr) argument
[all...]
/external/tcpdump/
H A Dprint-cnfp.c160 register const struct nfrec_v1 *nr; local
186 nr = (const struct nfrec_v1 *)&nh[1];
190 for (; nrecs != 0; nr++, nrecs--) {
197 ND_TCHECK(*nr);
199 EXTRACT_32BITS(&nr->start_time)/1000,
200 EXTRACT_32BITS(&nr->start_time)%1000,
201 EXTRACT_32BITS(&nr->last_time)/1000,
202 EXTRACT_32BITS(&nr->last_time)%1000));
205 ND_PRINT((ndo, "\n %s%s%s:%u ", intoa(nr->src_ina.s_addr), buf, asbuf,
206 EXTRACT_16BITS(&nr
250 register const struct nfrec_v5 *nr; local
347 register const struct nfrec_v6 *nr; local
[all...]
/external/blktrace/
H A Dverify_blkparse.c13 int major, minor, cpu, nr, alias; local
18 for (nr = 0; nr < MAX_CPUS; nr++)
19 last_seq[nr] = -1;
33 alias = nr = 0;
42 nr++;
62 fprintf(stdout, "Events %Lu: %d unordered, %d aliases\n", total_entries, nr, alias);
65 return nr != 0;
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
H A DISourceNode.java42 * @param nr
46 public ILine getLine(int nr); argument
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_dmatmp.h48 #define ALLOC_ELTS(nr) 0
51 #define INCR_ELTS( nr )
76 static void *TAG(emit_elts)( struct gl_context *ctx, GLuint *elts, GLuint nr, argument
83 for ( i = 0 ; i+1 < nr ; i+=2, elts += 2 ) {
88 if (i < nr) {
116 GLuint j, nr; local
124 for (j = start; j < count; j += nr ) {
125 nr = MIN2( currentsz, count - j );
126 TAG(emit_verts)( ctx, j, nr, ALLOC_VERTS(nr) );
145 GLuint j, nr; local
181 GLuint j, nr; local
213 GLuint j, nr; local
278 GLuint j, nr; local
308 GLuint j, nr; local
346 GLuint j, nr; local
386 GLuint j, nr; local
422 GLuint j, nr; local
426 GLuint j, nr; local
455 GLuint j, nr; local
552 GLuint j, nr; local
579 GLuint j, nr; local
693 GLuint j, nr; local
725 GLuint j, nr; local
762 GLuint j, nr; local
796 GLuint j, nr; local
867 GLuint j, nr; local
899 GLuint j, nr; local
938 GLuint j, nr; local
976 GLuint j, nr; local
1018 GLuint j, nr; local
1084 GLuint j, nr; local
1107 GLuint j, nr; local
[all...]
/external/eigen/bench/
H A DbenchmarkSlice.cpp26 int r, c, nr, nc; local
29 nr = Eigen::internal::random<int>(50,80);
31 m.block(r,c,nr,nc) += Mat::Ones(nr,nc);
32 m.block(r,c,nr,nc) *= SCALAR(10);
33 m.block(r,c,nr,nc) -= Mat::constant(nr,nc,10);
34 m.block(r,c,nr,nc) /= SCALAR(10);
/external/fio/
H A Dio_u_queue.h10 unsigned int nr; member in struct:io_u_queue
15 if (q->nr) {
16 const unsigned int next = --q->nr;
28 q->io_us[q->nr++] = io_u;
33 return !q->nr;
37 for (i = 0; i < (q)->nr && (io_u = (q)->io_us[i]); i++)
39 int io_u_qinit(struct io_u_queue *q, unsigned int nr);
49 int io_u_rinit(struct io_u_ring *ring, unsigned int nr);
H A Dio_u_queue.c4 int io_u_qinit(struct io_u_queue *q, unsigned int nr) argument
6 q->io_us = calloc(nr, sizeof(struct io_u *));
10 q->nr = 0;
19 int io_u_rinit(struct io_u_ring *ring, unsigned int nr) argument
21 ring->max = nr + 1;
/external/autotest/client/tests/linus_stress/
H A Dlinus_stress.c14 static void fillmem(void *start, int nr) argument
16 memset(start, nr, CHUNKSIZE);
23 static int order(int nr) argument
26 if (nr < 0 || nr >= NRCHUNKS)
29 if (chunkorder[i] == nr)
34 static void checkmem(void *buf, int nr) argument
37 unsigned char c = nr, *p = buf, differs = 0;
50 printf("Chunk %d corrupted (%u-%u) (%u-%u) \n", nr, start, end,
53 printf("Written as (%d)%d(%d)\n", order(nr
84 int nr = chunkorder[index]; local
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_syscall_linux_x86_64.inc16 static uptr internal_syscall(u64 nr) {
18 asm volatile("syscall" : "=a"(retval) : "a"(nr) : "rcx", "r11",
24 static uptr internal_syscall(u64 nr, T1 arg1) {
26 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1) :
32 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2) {
34 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
40 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3) {
42 asm volatile("syscall" : "=a"(retval) : "a"(nr), "D"((u64)arg1),
48 static uptr internal_syscall(u64 nr, T1 arg1, T2 arg2, T3 arg3, T4 arg4) {
51 "syscall" : "=a"(retval) : "a"(nr), "
[all...]
/external/libchrome/sandbox/linux/seccomp-bpf/
H A Dsyscall.h49 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6, T7 p7) { argument
50 return Call(nr,
69 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5, T6 p6) { argument
70 return Call(nr,
83 Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { argument
84 return Call(nr,
96 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3, T4 p4) { argument
97 return Call(nr, p0, p1, p2, p3, p4, 0, 0, 0);
101 static inline intptr_t Call(int nr, T0 p0, T1 p1, T2 p2, T3 p3) { argument
102 return Call(nr, p
106 Call(int nr, T0 p0, T1 p1, T2 p2) argument
111 Call(int nr, T0 p0, T1 p1) argument
116 Call(int nr, T0 p0) argument
120 Call(int nr) argument
[all...]

Completed in 2778 milliseconds

1234567891011>>