Searched refs:cs (Results 176 - 200 of 831) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/blocklist/bin/
H A Dconf.c902 confset_init(struct confset *cs) argument
904 cs->cs_c = NULL;
905 cs->cs_n = 0;
906 cs->cs_m = 0;
910 confset_grow(struct confset *cs) argument
914 cs->cs_m += 10;
915 tc = realloc(cs->cs_c, cs->cs_m * sizeof(*cs->cs_c));
920 cs
925 confset_get(struct confset *cs) argument
931 confset_full(const struct confset *cs) argument
937 confset_sort(struct confset *cs) argument
943 confset_add(struct confset *cs) argument
949 confset_free(struct confset *cs) argument
966 confset_list(const struct confset *cs, const char *msg, const char *where) argument
983 confset_match(const struct confset *cs, struct conf *c, void (*fun)(struct conf *, const struct conf *)) argument
1170 struct confset lc, rc, *cs; local
[all...]
/netbsd-current/usr.bin/hexdump/
H A Dparse.c225 char savech, *fmtp, cs[sizeof(PRId64)]; local
271 cs[0] = *p1; /* Set conversion string. */
272 cs[1] = '\0';
279 switch(cs[0]) {
309 * "lld" or "qd", and cs[0] is 'o', then
312 savech = cs[0];
313 strncpy(cs, PRId64, sizeof(PRId64) - 2);
314 cs[sizeof(PRId64) - 2] = savech;
315 cs[sizeof(PRId64) - 1] = '\0';
377 strncpy(cs, PRId6
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/i915/gt/
H A Dintel_engine.h258 gen8_emit_ggtt_write_rcs(u32 *cs, u32 value, u32 gtt_offset, u32 flags) argument
267 *cs++ = GFX_OP_PIPE_CONTROL(6);
268 *cs++ = flags | PIPE_CONTROL_QW_WRITE | PIPE_CONTROL_GLOBAL_GTT_IVB;
269 *cs++ = gtt_offset;
270 *cs++ = 0;
271 *cs++ = value;
273 *cs++ = 0;
275 return cs;
279 gen8_emit_ggtt_write(u32 *cs, u32 value, u32 gtt_offset, u32 flags) argument
286 *cs
[all...]
H A Dintel_lrc.c53 * rings, the engine cs shifts to a new "ring buffer" with every context
2310 ENGINE_TRACE(engine, "cs-irq head=%d, tail=%d\n", head, tail);
3032 u32 *cs; local
3036 cs = intel_ring_begin(rq, 6);
3037 if (IS_ERR(cs))
3038 return PTR_ERR(cs);
3046 *cs++ = MI_ARB_CHECK;
3047 *cs++ = MI_NOOP;
3049 *cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
3050 *cs
3788 u32 *cs; local
3824 u32 *cs; local
3859 u32 cmd, *cs; local
3893 u32 *cs, flags = 0; local
3960 u32 *cs; local
3982 u32 *cs; local
4018 u32 *cs; local
4044 u32 *cs; local
4105 gen8_emit_wa_tail(struct i915_request *request, u32 *cs) argument
4115 emit_preempt_busywait(struct i915_request *request, u32 *cs) argument
4129 gen8_emit_fini_breadcrumb_footer(struct i915_request *request, u32 *cs) argument
4144 gen8_emit_fini_breadcrumb(struct i915_request *request, u32 *cs) argument
4154 gen8_emit_fini_breadcrumb_rcs(struct i915_request *request, u32 *cs) argument
4173 gen11_emit_fini_breadcrumb_rcs(struct i915_request *request, u32 *cs) argument
4207 gen12_emit_preempt_busywait(struct i915_request *request, u32 *cs) argument
4223 gen12_emit_fini_breadcrumb_footer(struct i915_request *request, u32 *cs) argument
4237 gen12_emit_fini_breadcrumb(struct i915_request *request, u32 *cs) argument
4248 gen12_emit_fini_breadcrumb_rcs(struct i915_request *request, u32 *cs) argument
[all...]
H A Dselftest_lrc.c397 u32 *cs; local
399 cs = intel_ring_begin(rq, 10);
400 if (IS_ERR(cs))
401 return PTR_ERR(cs);
403 *cs++ = MI_ARB_ON_OFF | MI_ARB_ENABLE;
405 *cs++ = MI_SEMAPHORE_WAIT |
409 *cs++ = 0;
410 *cs++ = i915_ggtt_offset(vma) + 4 * idx;
411 *cs++ = 0;
414 *cs
471 u32 *cs; local
843 u32 *cs; local
2099 u32 *cs; local
2211 u32 *cs; local
2686 u32 *cs; local
3057 u32 *cs; local
3851 u32 *cs; local
3958 u32 *cs; local
3989 u32 *cs; local
[all...]
/netbsd-current/external/bsd/liblzf/dist/
H A Dlzf.c176 ssize_t us, cs, len; local
184 cs = lzf_compress (&buf1[MAX_HDR_SIZE], us, &buf2[MAX_HDR_SIZE], us > 4 ? us - 4 : us);
185 if (cs)
191 header[3] = cs >> 8;
192 header[4] = cs & 0xff;
195 len = cs + TYPE1_HDR_SIZE;
223 ssize_t rc, cs, us, bytes, over = 0; local
250 cs = -1;
259 cs = (header[3] << 8) | header[4];
268 bytes = cs
[all...]
/netbsd-current/external/gpl2/lvm2/dist/libdm/regex/
H A Dmatcher.c332 static struct dfa_state *_step_matcher(int c, struct dfa_state *cs, int *r) argument
334 if (!(cs = cs->lookup[(unsigned char) c]))
337 if (cs->final && (cs->final > *r))
338 *r = cs->final;
340 return cs;
345 struct dfa_state *cs = regex->start; local
348 if (!(cs = _step_matcher(HAT_CHAR, cs,
[all...]
/netbsd-current/usr.sbin/ldpd/
H A Dldp_command.c220 command_dispatch(struct com_sock *cs) argument
224 int r = recv(cs->socket, recvspace, MAX_COMMAND_SIZE, MSG_PEEK);
227 command_close(cs->socket);
231 recv(cs->socket, recvspace, r, MSG_WAITALL);
234 if (cs->auth) {
235 /*writestr(cs->socket, "Unknown command. Use ? for help\n");*/
236 send_prompt(cs->socket);
238 writestr(cs->socket, "Bad password\n");
239 command_close(cs->socket);
246 if (!cs
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/
H A Di915_gem_coherency.c196 u32 *cs; local
215 cs = intel_ring_begin(rq, 4);
216 if (IS_ERR(cs)) {
219 return PTR_ERR(cs);
223 *cs++ = MI_STORE_DWORD_IMM_GEN4 | 1 << 22;
224 *cs++ = lower_32_bits(i915_ggtt_offset(vma) + offset);
225 *cs++ = upper_32_bits(i915_ggtt_offset(vma) + offset);
226 *cs++ = v;
228 *cs++ = MI_STORE_DWORD_IMM_GEN4 | MI_USE_GGTT;
229 *cs
[all...]
/netbsd-current/sys/external/bsd/drm/dist/shared-core/
H A Dradeon_cs.c138 struct drm_radeon_cs *cs = data; local
146 DRM_SPINLOCK(&dev_priv->cs.cs_mutex);
149 cs->cs_id = cs_id;
151 if (!cs->num_chunks) {
152 DRM_SPINUNLOCK(&dev_priv->cs.cs_mutex);
157 chunk_array = drm_calloc(cs->num_chunks, sizeof(uint64_t), DRM_MEM_DRIVER);
159 DRM_SPINUNLOCK(&dev_priv->cs.cs_mutex);
163 chunk_array_ptr = (uint64_t *)(unsigned long)(cs->chunks);
165 if (DRM_COPY_FROM_USER(chunk_array, chunk_array_ptr, sizeof(uint64_t)*cs->num_chunks)) {
174 parser.num_chunks = cs
[all...]
/netbsd-current/sys/arch/amiga/amiga/
H A Dcustom.h104 } cs; member in union:Custom::__anon8064
107 #define cop1lch _cop1lc.cs.ch
108 #define cop1lcl _cop1lc.cs.cl
114 } cs; member in union:Custom::__anon8066
117 #define cop2lch _cop2lc.cs.ch
118 #define cop2lcl _cop2lc.cs.cl
/netbsd-current/sys/arch/hpcmips/dev/
H A Ducb1200.c197 struct ucbchild_state *cs; local
200 cs = sc->sc_child;
201 for (i = 0; i < UCB1200_MODULE_MAX; i++, cs++)
202 if (cs->cs_busy)
203 if ((*cs->cs_busy)(cs->cs_arg))
/netbsd-current/external/bsd/openldap/dist/contrib/ldapc++/src/
H A DLDAPControlSet.h33 LDAPControlSet(const LDAPControlSet& cs);
H A DLDAPControlSet.cpp15 LDAPControlSet::LDAPControlSet(const LDAPControlSet& cs){ argument
17 data=cs.data;
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dmkconfig.sh124 rm -f cs-$output
125 echo timestamp > cs-$output
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/arm/
H A Dthumb2_bcond.s11 it cs
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/
H A Dx86-64-nops-5-k8.d33 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
38 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
43 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
48 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
58 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
63 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
73 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
78 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
H A Dx86-64-nops-5.d32 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
37 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
42 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
47 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
57 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
62 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
72 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
77 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
H A Dnops-5-i686.d32 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
37 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
42 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
47 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
57 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
62 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
72 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
77 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
H A Dnops-5.d30 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
35 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
40 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
45 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
55 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
60 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
70 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
75 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%eax,%eax,1\)
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-aarch64/
H A Dweak-undefined.s7 b.cs foo
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/ilp32/
H A Dx86-64-nops-5-k8.d32 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
37 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
42 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
47 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
57 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
62 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
72 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
77 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
H A Dx86-64-nops-5.d31 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
36 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
41 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
46 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
56 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
61 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
71 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
76 [ ]*[a-f0-9]+: 66 66 2e 0f 1f 84 00 00 00 00 00 data16 nopw %cs:0x0\(%rax,%rax,1\)
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dmkconfig.sh124 rm -f cs-$output
125 echo timestamp > cs-$output
/netbsd-current/external/gpl2/gmake/dist/
H A Dmain.c2409 register const struct command_switch *cs;
2440 for (cs = switches; cs->c != '\0'; ++cs)
2441 if (cs->c == c)
2447 int doit = !env || cs->env;
2449 switch (cs->type)
2460 *(int *) cs->value_ptr = cs->type == flag;
2468 optarg = cs
2404 register const struct command_switch *cs; local
2665 register const struct command_switch *cs; local
2679 const struct command_switch *cs; member in struct:flag
[all...]

Completed in 339 milliseconds

1234567891011>>