| /xsrc/external/mit/MesaLib/dist/.gitlab-ci/bare-metal/ |
| telnet-buffer.py | 24 # Tiny script to read bytes from telnet, and write the output to stdout, with a 37 bytes = tn.read_some() variable 38 sys.stdout.buffer.write(bytes)
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/util/ |
| u_linear.c | 42 size_t bytes = t->cols * t->block.size; local 51 ptr = (char*)src_ptr + src_stride * t->rows * y + bytes * x; 53 memcpy(dst_ptr2, ptr, bytes); 54 dst_ptr2 += bytes; 66 size_t bytes = t->cols * t->block.size; local 73 ptr = (char*)dst_ptr + dst_stride * t->rows * y + bytes * x; 75 memcpy(ptr, src_ptr2, bytes); 76 src_ptr2 += bytes;
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/ |
| u_linear.c | 42 size_t bytes = t->cols * t->block.size; local 51 ptr = (char*)src_ptr + src_stride * t->rows * y + bytes * x; 53 memcpy(dst_ptr2, ptr, bytes); 54 dst_ptr2 += bytes; 66 size_t bytes = t->cols * t->block.size; local 73 ptr = (char*)dst_ptr + dst_stride * t->rows * y + bytes * x; 75 memcpy(ptr, src_ptr2, bytes); 76 src_ptr2 += bytes;
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/tests/ |
| mesa_formats.cpp | 95 GLint bytes = _mesa_get_format_bytes(f); local 96 EXPECT_LE((r+g+b+a) / 8, bytes);
|
| /xsrc/external/mit/libpciaccess/dist/src/ |
| linux_devmem.c | 126 size_t bytes; local 128 for (bytes = 0; bytes < rom_size; /* empty */) { 129 const ssize_t got = pread(fd, buffer, rom_size - bytes, 130 rom_base + bytes); 136 bytes += got;
|
| common_bridge.c | 60 pciaddr_t bytes; local 82 0x40 - 0x18, & bytes ); 140 0x40 - 0x16, & bytes );
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeon/ |
| radeon_video.c | 94 unsigned bytes = MIN2(new_buf->res->buf->size, new_size); local 109 memcpy(dst, src, bytes); 110 if (new_size > bytes) { 111 new_size -= bytes; 112 dst += bytes;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/omx/bellagio/ |
| vid_dec_mpeg12.c | 157 unsigned bytes = priv->bytes_left - (vl_vlc_bits_left(vlc) / 8); local 159 1, &priv->slice, &bytes); 345 unsigned bytes = (vl_vlc_valid_bits(vlc) / 8) + 4; local 357 for (i = 4; i < bytes; ++i) 361 1, &ptr, &bytes);
|
| vid_dec.c | 485 unsigned bytes = priv->bytes_left - vl_vlc_bits_left(&vlc) / 8; local 488 1, &priv->slice, &bytes);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| texcompress.c | 933 * \param srcRowStride stride in bytes between rows of blocks in the 943 GLuint bytes, bw, bh; local 946 bytes = _mesa_get_format_bytes(format); 955 stride = srcRowStride * bh / bytes;
|
| /xsrc/external/mit/MesaLib.old/dist/src/freedreno/ir3/ |
| ir3_nir_analyze_ubo_ranges.c | 36 const int bytes = nir_intrinsic_dest_components(instr) * 4; local 39 r.end = ALIGN(offset + bytes, 16 * 4);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/omx/bellagio/ |
| vid_dec_mpeg12.c | 157 unsigned bytes = priv->bytes_left - (vl_vlc_bits_left(vlc) / 8); local 159 1, &priv->slice, &bytes); 345 unsigned bytes = (vl_vlc_valid_bits(vlc) / 8) + 4; local 357 for (i = 4; i < bytes; ++i) 361 1, &ptr, &bytes);
|
| vid_dec.c | 453 unsigned bytes = priv->bytes_left - vl_vlc_bits_left(&vlc) / 8; local 456 1, &priv->slice, &bytes);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| texcompress.c | 933 * \param srcRowStride stride in bytes between rows of blocks in the 943 GLuint bytes, bw, bh; local 946 bytes = _mesa_get_format_bytes(format); 955 stride = srcRowStride * bh / bytes;
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/ |
| glcpp.c | 53 size_t bytes; local 64 bytes = fread (text + total_read, 1, CHUNK, fp); 65 total_read += bytes; 67 if (bytes < CHUNK) {
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| nir_opt_constant_folding.c | 252 unsigned bytes = intrin->dest.ssa.bit_size / 8; local 253 bytes = MIN2(bytes, range - offset); 255 memcpy(&imm[i].u64, data + offset, bytes); 256 offset += bytes;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_debug.cpp | 93 const uint8_t *bytes = (const uint8_t *)func; local 126 Size = LLVMDisasmInstruction(D, (uint8_t *)bytes + pc, extent - pc, 0, outline, 136 * Output the bytes in hexidecimal format. 143 << static_cast<int> (bytes[pc + i]); 164 if (Size == 1 && bytes[pc] == 0xc3) { 176 buffer << "disassembly larger than " << extent << " bytes, aborting\n"; 189 buffer << "disassemble " << static_cast<const void*>(bytes) << ' ' 190 << static_cast<const void*>(bytes + pc) << '\n';
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/ |
| tgsi_parse.c | 282 unsigned bytes = n * sizeof(struct tgsi_token); local 283 struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes); 285 memcpy(new_tokens, tokens, bytes); 296 unsigned bytes = num_tokens * sizeof(struct tgsi_token); local 297 return (struct tgsi_token *) MALLOC(bytes);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/nouveau/ |
| nouveau_util.h | 84 GLubyte bytes[4]; local 85 _mesa_unclamped_float_rgba_to_ubyte(bytes, c); 86 return pack_rgba_i(f, bytes);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/tests/ |
| mesa_formats.cpp | 96 GLint bytes = _mesa_get_format_bytes(f); local 97 EXPECT_LE((r+g+b+a) / 8, bytes);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/ |
| s_clear.c | 69 uint32_t bytes = _mesa_get_format_bytes(format); local 83 for (i = 0; i < bytes; i++) { 89 for (i = 0; i < bytes / 2; i++) { 95 for (i = 0; i < bytes / 4; i++) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/ |
| glcpp.c | 53 size_t bytes; local 64 bytes = fread (text + total_read, 1, CHUNK, fp); 65 total_read += bytes; 67 if (bytes < CHUNK) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/ |
| lp_bld_debug.cpp | 101 const uint8_t *bytes = (const uint8_t *)func; local 134 Size = LLVMDisasmInstruction(D, (uint8_t *)bytes + pc, extent - pc, 0, outline, 144 * Output the bytes in hexidecimal format. 151 << static_cast<int> (bytes[pc + i]); 172 if (Size == 1 && bytes[pc] == 0xc3) { 184 buffer << "disassembly larger than " << extent << " bytes, aborting\n"; 197 buffer << "disassemble " << static_cast<const void*>(bytes) << ' ' 198 << static_cast<const void*>(bytes + pc) << '\n';
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/tgsi/ |
| tgsi_parse.c | 282 unsigned bytes = n * sizeof(struct tgsi_token); local 283 struct tgsi_token *new_tokens = (struct tgsi_token *) MALLOC(bytes); 285 memcpy(new_tokens, tokens, bytes); 296 unsigned bytes = num_tokens * sizeof(struct tgsi_token); local 297 return (struct tgsi_token *) MALLOC(bytes);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/radeon/ |
| radeon_video.c | 84 unsigned bytes = MIN2(new_buf->res->buf->size, new_size); local 101 memcpy(dst, src, bytes); 102 if (new_size > bytes) { 103 new_size -= bytes; 104 dst += bytes;
|