HomeSort by: relevance | last modified time | path
    Searched refs:out_buf (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 106 void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf,
112 internal_strncpy(out_buf, "<can't symbolize>", out_buf_size);
113 out_buf[out_buf_size - 1] = 0;
119 char *out_end = out_buf + out_buf_size - 1;
120 for (SymbolizedStack *cur = frame; cur && out_buf < out_end;
129 uptr n = out_end - out_buf - 1;
130 internal_strncpy(out_buf, frame_desc.data(), n);
131 out_buf += __sanitizer::Min<uptr>(n, frame_desc.length());
132 *out_buf++ = 0;
134 CHECK(out_buf <= out_end)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
dvo_ch7xxx.c 145 u8 out_buf[2]; local in function:ch7xxx_readb
153 .buf = out_buf,
163 out_buf[0] = addr;
164 out_buf[1] = 0;
183 u8 out_buf[2]; local in function:ch7xxx_writeb
188 .buf = out_buf,
191 out_buf[0] = addr;
192 out_buf[1] = ch;
dvo_sil164.c 78 u8 out_buf[2]; local in function:sil164_readb
86 .buf = out_buf,
96 out_buf[0] = addr;
97 out_buf[1] = 0;
115 u8 out_buf[2]; local in function:sil164_writeb
120 .buf = out_buf,
123 out_buf[0] = addr;
124 out_buf[1] = ch;
dvo_tfp410.c 103 u8 out_buf[2]; local in function:tfp410_readb
111 .buf = out_buf,
121 out_buf[0] = addr;
122 out_buf[1] = 0;
140 u8 out_buf[2]; local in function:tfp410_writeb
145 .buf = out_buf,
148 out_buf[0] = addr;
149 out_buf[1] = ch;
dvo_ivch.c 201 u8 out_buf[1]; local in function:ivch_read
214 .buf = out_buf,
224 out_buf[0] = addr;
244 u8 out_buf[3]; local in function:ivch_write
249 .buf = out_buf,
252 out_buf[0] = addr;
253 out_buf[1] = data & 0xff;
254 out_buf[2] = data >> 8;
dvo_ns2501.c 402 u8 out_buf[2]; local in function:ns2501_readb
410 .buf = out_buf,
420 out_buf[0] = addr;
421 out_buf[1] = 0;
447 u8 out_buf[2]; local in function:ns2501_writeb
453 .buf = out_buf,
456 out_buf[0] = addr;
457 out_buf[1] = ch;
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
common_interface_defs.h 126 // Outputs at most 'out_buf_size' bytes into 'out_buf'.
127 // If 'out_buf' is not empty then output is zero or more non empty C strings
135 void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf,
139 char *out_buf, size_t out_buf_size);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_i2c.c 297 u8 out_buf[2]; local in function:amdgpu_i2c_get_byte
304 .buf = out_buf,
314 out_buf[0] = addr;
315 out_buf[1] = 0;
331 uint8_t out_buf[2]; local in function:amdgpu_i2c_put_byte
336 .buf = out_buf,
339 out_buf[0] = addr;
340 out_buf[1] = val;
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_i2c.c 1062 u8 out_buf[2]; local in function:radeon_i2c_get_byte
1069 .buf = out_buf,
1079 out_buf[0] = addr;
1080 out_buf[1] = 0;
1096 uint8_t out_buf[2]; local in function:radeon_i2c_put_byte
1101 .buf = out_buf,
1104 out_buf[0] = addr;
1105 out_buf[1] = val;
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_bo.c 1097 struct vmw_buffer_object *out_buf; local in function:vmw_dumb_map_offset
1100 ret = vmw_user_bo_lookup(tfile, handle, &out_buf, NULL);
1104 *offset = drm_vma_node_offset_addr(&out_buf->base.base.vma_node);
1105 vmw_bo_unreference(&out_buf);
vmwgfx_resource.c 332 * The pointer this pointed at by out_surf and out_buf needs to be null.
338 struct vmw_buffer_object **out_buf)
343 BUG_ON(*out_surf || *out_buf);
354 ret = vmw_user_bo_lookup(tfile, handle, out_buf, NULL);
vmwgfx_drv.h 736 struct vmw_buffer_object **out_buf);

Completed in 23 milliseconds