HomeSort by: relevance | last modified time | path
    Searched refs:byte_count (Results 1 - 25 of 76) sorted by relevancy

1 2 3 4

  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_kv_smc.c 128 const u8 *src, u32 byte_count, u32 limit)
133 if ((smc_start_address + byte_count) > limit)
156 } else if (byte_count > 0) {
158 byte_count--;
178 while (byte_count >= 4) {
189 byte_count -= 4;
194 if (byte_count > 0) {
203 extra_shift = 8 * (4 - byte_count);
205 while (byte_count > 0) {
208 byte_count--
    [all...]
amdgpu_si_smc.c 54 const u8 *src, u32 byte_count, u32 limit)
62 if ((smc_start_address + byte_count) > limit)
68 while (byte_count >= 4) {
79 byte_count -= 4;
84 if (byte_count > 0) {
92 extra_shift = 8 * (4 - byte_count);
94 while (byte_count > 0) {
97 byte_count--;
amdgpu_sdma.h 95 uint32_t byte_count);
110 uint32_t byte_count);
  /src/sys/external/bsd/drm2/dist/drm/radeon/
radeon_kv_smc.c 124 const u8 *src, u32 byte_count, u32 limit)
129 if ((smc_start_address + byte_count) > limit)
152 } else if (byte_count > 0) {
154 byte_count--;
174 while (byte_count >= 4) {
185 byte_count -= 4;
190 if (byte_count > 0) {
199 extra_shift = 8 * (4 - byte_count);
201 while (byte_count > 0) {
204 byte_count--
    [all...]
radeon_ci_smc.c 54 const u8 *src, u32 byte_count, u32 limit)
64 if ((smc_start_address + byte_count) > limit)
70 while (byte_count >= 4) {
81 byte_count -= 4;
86 if (byte_count > 0) {
95 extra_shift = 8 * (4 - byte_count);
97 while (byte_count > 0) {
99 byte_count--;
radeon_si_smc.c 54 const u8 *src, u32 byte_count, u32 limit)
62 if ((smc_start_address + byte_count) > limit)
68 while (byte_count >= 4) {
79 byte_count -= 4;
84 if (byte_count > 0) {
93 extra_shift = 8 * (4 - byte_count);
95 while (byte_count > 0) {
98 byte_count--;
radeon_rv770_smc.c 302 u16 byte_count, u16 limit)
311 if ((smc_start_address + byte_count) > limit)
317 while (byte_count >= 4) {
328 byte_count -= 4;
333 if (byte_count > 0) {
342 extra_shift = 8 * (4 - byte_count);
344 while (byte_count > 0) {
347 byte_count--;
369 u32 byte_count)
373 if (byte_count % 4
    [all...]
  /src/tests/lib/libc/string/
t_popcount.c 40 static unsigned int byte_count[256]; variable
53 byte_count[i] = 0;
56 ++byte_count[i];
147 r = byte_count[i & 255] + byte_count[(i >> 8) & 255]
148 + byte_count[(i >> 16) & 255]
149 + byte_count[(i >> 24) & 255];
173 r2 = byte_count[p & 255] + byte_count[(p >> 8) & 255]
174 + byte_count[(p >> 16) & 255
    [all...]
  /src/sys/arch/hpcmips/stand/pbsdboot/
elf.c 73 vmem_sub(int opr, void* xxx, void *addr, int nbytes, int *byte_count)
114 int tmp_progress = *byte_count * 100 / total_bytes;
115 *byte_count += n;
133 long byte_count; local
187 byte_count = 0;
211 &byte_count) != 0) {
217 &byte_count) != 0) {
221 byte_count += phtbl[i].p_memsz;
232 total_bytes = byte_count;
289 &byte_count) != 0)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/smumgr/
amdgpu_smu7_smumgr.c 54 int smu7_copy_bytes_from_smc(struct pp_hwmgr *hwmgr, uint32_t smc_start_address, uint32_t *dest, uint32_t byte_count, uint32_t limit)
63 PP_ASSERT_WITH_CODE((limit > (smc_start_address + byte_count)), "SMC address is beyond the SMC RAM area.", return -EINVAL);
67 while (byte_count >= 4) {
73 byte_count -= 4;
77 if (byte_count) {
82 for (i = 0; i < byte_count; i++)
91 const uint8_t *src, uint32_t byte_count, uint32_t limit)
100 PP_ASSERT_WITH_CODE((limit > (smc_start_address + byte_count)), "SMC address is beyond the SMC RAM area.", return -EINVAL);
104 while (byte_count >= 4) {
116 byte_count -= 4
468 uint32_t byte_count = length; local
    [all...]
smu7_smumgr.h 59 uint32_t *dest, uint32_t byte_count, uint32_t limit);
61 const uint8_t *src, uint32_t byte_count, uint32_t limit);
  /src/external/ibm-public/postfix/dist/src/util/
valid_hostname.c 212 int byte_count = 0; local
229 byte_count++;
245 if (byte_count == 1 && byte_val == 0 && addr[strspn(addr, "0.")]) {
259 if (byte_count != BYTES_NEEDED) {
  /src/crypto/external/bsd/heimdal/dist/lib/gssapi/mech/
gss_mech_switch.c 50 size_t byte_count; local
82 byte_count = 0;
116 byte_count++;
137 byte_count++;
142 if (byte_count == 0)
145 res = malloc(byte_count);
148 oid->length = byte_count;
  /src/crypto/external/apache2/openssl/dist/ssl/
bio_ssl.c 37 size_t byte_count; member in struct:bio_ssl_st
115 sb->byte_count += *readbytes;
116 if (sb->byte_count > sb->renegotiate_count) {
117 sb->byte_count = 0;
184 bs->byte_count += *written;
185 if (bs->byte_count > bs->renegotiate_count) {
186 bs->byte_count = 0;
389 dbs->byte_count = bs->byte_count;
  /src/crypto/external/bsd/openssl/dist/ssl/
bio_ssl.c 31 size_t byte_count; member in struct:bio_ssl_st
111 sb->byte_count += *readbytes;
112 if (sb->byte_count > sb->renegotiate_count) {
113 sb->byte_count = 0;
180 bs->byte_count += *written;
181 if (bs->byte_count > bs->renegotiate_count) {
182 bs->byte_count = 0;
375 dbs->byte_count = bs->byte_count;
  /src/crypto/external/bsd/openssl.old/dist/ssl/
bio_ssl.c 31 size_t byte_count; member in struct:bio_ssl_st
111 sb->byte_count += *readbytes;
112 if (sb->byte_count > sb->renegotiate_count) {
113 sb->byte_count = 0;
180 bs->byte_count += *written;
181 if (bs->byte_count > bs->renegotiate_count) {
182 bs->byte_count = 0;
375 dbs->byte_count = bs->byte_count;
  /src/external/mit/expat/dist/tests/
structdata.c 64 size_t byte_count = (xcstrlen(s) + 1) * sizeof(XML_Char); local
65 XML_Char *const dup = malloc(byte_count);
68 memcpy(dup, s, byte_count);
  /src/sys/external/bsd/drm/dist/bsd-core/
drm_bufs.c 455 int byte_count; local
468 byte_count = 0;
519 buf->offset = (dma->byte_count + offset);
538 byte_count += PAGE_SIZE << page_order;
541 DRM_DEBUG("byte_count: %d\n", byte_count);
558 dma->byte_count += byte_count;
584 int byte_count; local
633 byte_count = 0
737 int byte_count; local
    [all...]
  /src/sys/arch/mac68k/include/
adbsys.h 61 int byte_count; /* number of bytes */ member in struct:adb_event_s
  /src/sys/arch/macppc/include/
adbsys.h 62 int byte_count; /* number of bytes */ member in struct:adb_event_s
  /src/sys/dev/pci/
pciidereg.h 108 u_int32_t byte_count; /* memory region length */ member in struct:idedma_table
  /src/usr.sbin/ndbootd/
ndbootd.c 179 unsigned int byte_count, bytes_left; local
189 byte_count = ip_packet->ip_hl << 2;
190 for (bytes_left = byte_count; bytes_left >= sizeof(*_word);) {
334 ssize_t byte_count; local
789 byte_count = ntohl(nd_packet->ndboot_packet_current_byte_count);
790 for (; byte_count > 0;) {
805 byte_count);
817 byte_count);
853 byte_count);
864 byte_count);
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/
mi-disassemble.exp 337 set byte_count [llength $split_bytes]
338 set end_addr 0x[format %x [expr $longest_insn_addr + $byte_count]]
341 verbose -log "Instruction is ${byte_count} bytes, end address ${end_addr}"
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/
mi-disassemble.exp 337 set byte_count [llength $split_bytes]
338 set end_addr 0x[format %x [expr $longest_insn_addr + $byte_count]]
341 verbose -log "Instruction is ${byte_count} bytes, end address ${end_addr}"
  /src/sys/external/bsd/drm2/dist/drm/
drm_bufs.c 784 int byte_count; local
800 byte_count = 0;
868 buf->offset = (dma->byte_count + offset);
891 byte_count += PAGE_SIZE << page_order;
894 DRM_DEBUG("byte_count: %d\n", byte_count);
914 dma->page_count += byte_count >> PAGE_SHIFT;
915 dma->byte_count += byte_count;
948 int byte_count; local
1153 int byte_count; local
    [all...]

Completed in 32 milliseconds

1 2 3 4