Searched refs:writer (Results 1 - 25 of 34) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/mesa/drivers/dri/i965/
H A Dbrw_program_binary.c130 serialize_nir_part(struct blob *writer, struct gl_program *prog) argument
132 blob_write_uint32(writer, NIR_PART);
133 intptr_t size_offset = blob_reserve_uint32(writer);
134 size_t nir_start = writer->size;
135 nir_serialize(writer, prog->nir);
136 blob_overwrite_uint32(writer, size_offset, writer->size - nir_start);
149 struct blob writer; local in function:brw_program_serialize_nir
150 blob_init(&writer);
151 serialize_nir_part(&writer, pro
247 serialize_gen_part(struct blob * writer,struct gl_context * ctx,struct gl_shader_program * sh_prog,struct gl_program * prog) argument
297 struct blob writer; local in function:brw_serialize_program_binary
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_program_binary.c130 serialize_nir_part(struct blob *writer, struct gl_program *prog) argument
132 blob_write_uint32(writer, NIR_PART);
133 intptr_t size_offset = blob_reserve_uint32(writer);
134 size_t nir_start = writer->size;
135 nir_serialize(writer, prog->nir, false);
136 blob_overwrite_uint32(writer, size_offset, writer->size - nir_start);
149 struct blob writer; local in function:brw_program_serialize_nir
150 blob_init(&writer);
151 serialize_nir_part(&writer, pro
247 serialize_intel_part(struct blob * writer,struct gl_context * ctx,struct gl_shader_program * sh_prog,struct gl_program * prog) argument
297 struct blob writer; local in function:brw_serialize_program_binary
[all...]
/xsrc/external/mit/MesaLib/dist/bin/
H A Dgen_calendar_entries.py109 writer = csv.writer(f)
110 writer.writerows(data)
112 writer.writerow([f'{major}.{minor}', date.isoformat(), f'{major}.{minor}.0-rc1', args.manager])
115 writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc{row}', args.manager])
117 writer.writerow([None, date.isoformat(), f'{major}.{minor}.0-rc4', args.manager, OR_FINAL.format(f'{major}.{minor}')])
151 writer = csv.writer(f)
152 writer.writerows(data)
156 writer
[all...]
H A Dpost_version.py72 writer = csv.writer(f)
73 writer.writerows(calendar)
H A Dgen_calendar_entries_test.py46 writer = csv.writer(f)
47 writer.writerows(data)
/xsrc/external/mit/freetype/dist/src/pfr/
H A Dpfrsbit.c50 pfr_bitwriter_init( PFR_BitWriter writer, argument
54 writer->line = target->buffer;
55 writer->pitch = target->pitch;
56 writer->width = target->width;
57 writer->rows = target->rows;
58 writer->total = writer->width * writer->rows;
62 writer->line += writer
69 pfr_bitwriter_decode_bytes(PFR_BitWriter writer,FT_Byte * p,FT_Byte * limit) argument
123 pfr_bitwriter_decode_rle1(PFR_BitWriter writer,FT_Byte * p,FT_Byte * limit) argument
204 pfr_bitwriter_decode_rle2(PFR_BitWriter writer,FT_Byte * p,FT_Byte * limit) argument
540 PFR_BitWriterRec writer; local in function:pfr_load_bitmap_bits
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/vc4/
H A Dvc4_opt_peephole_sf.c58 inst_srcs_updated(struct qinst *inst, struct qinst *writer) argument
63 switch (writer->dst.file) {
67 inst->src[i].index == writer->dst.index) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/vc4/
H A Dvc4_opt_peephole_sf.c58 inst_srcs_updated(struct qinst *inst, struct qinst *writer) argument
63 switch (writer->dst.file) {
67 inst->src[i].index == writer->dst.index) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/va/
H A Dpicture_mpeg4.c129 write_bit(struct bit_stream *writer, unsigned int bit) argument
131 assert(writer->length > (writer)->pos);
132 writer->data[writer->pos>>3] |= ((bit & 1)<<(7 - (writer->pos & 7)));
133 writer->pos++;
137 write_bits(struct bit_stream *writer, unsigned int bits, unsigned int len) argument
142 write_bit(writer, bits>>i);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog.c45 struct rc_variable * writer; local in function:r500_transform_IF
66 writer = list_ptr->Item;
68 * of writer, so if it has a reader other than
71 * If the writer has a lower IP than inst_if, this
72 * means that inst_if is above the writer in a loop.
76 if (writer->ReaderCount > 1 || writer->Inst->IP < inst_if->IP) {
83 * instruction between writer and inst_if, then
85 for (inst = writer->Inst; inst != inst_if; inst = inst->Next) {
131 writer
[all...]
H A Dradeon_dataflow.h108 struct rc_instruction * writer,
116 struct rc_instruction * writer,
H A Dradeon_dataflow.c682 struct rc_instruction * writer,
693 d->ReaderData->Writer = writer;
707 for(tmp = writer->Next; tmp != &d->C->Program.Instructions;
725 * the writer was written inside of a loop,
730 * back to the writer.
784 if (tmp == writer) {
823 * encounters an instruction that reads from @param writer and also a different
826 * writer = instruction 0;
833 * writer = instruction 1;
844 * writer
680 get_readers_for_single_write(void * userdata,struct rc_instruction * writer,rc_register_file dst_file,unsigned int dst_index,unsigned int dst_mask) argument
858 rc_get_readers(struct radeon_compiler * c,struct rc_instruction * writer,struct rc_reader_data * data,rc_read_src_fn read_normal_cb,rc_pair_read_arg_fn read_pair_cb,rc_read_write_mask_fn write_cb) argument
874 rc_get_readers_sub(struct radeon_compiler * c,struct rc_instruction * writer,struct rc_pair_sub_instruction * sub_writer,struct rc_reader_data * data,rc_read_src_fn read_normal_cb,rc_pair_read_arg_fn read_pair_cb,rc_read_write_mask_fn write_cb) argument
[all...]
H A Dradeon_optimize.c838 struct rc_variable * writer = var; local in function:peephole_mul_omod
842 writer->Inst->U.I.Omod = omod_op;
843 writer->Inst->U.I.DstReg.File = inst_mul->U.I.DstReg.File;
844 writer->Inst->U.I.DstReg.Index = inst_mul->U.I.DstReg.Index;
845 rc_normal_rewrite_writemask(writer->Inst, conversion_swizzle);
846 writer->Inst->U.I.SaturateMode = inst_mul->U.I.SaturateMode;
H A Dradeon_pair_schedule.c1134 struct schedule_instruction * writer,
1137 if (!writer || writer->Instruction->Type != RC_INSTRUCTION_NORMAL) {
1142 rc_list_add(&writer->TexReaders, rc_list(&s->C->Pool, reader));
1160 * registers _and_ the most recent writer of its destination
1163 * registers and was the most recent writer to its destination
1169 * previous writer's list of TexReaders, if the previous writer
1227 /* Keep track of the previous writer to s->Current's destination
1132 add_tex_reader(struct schedule_state * s,struct schedule_instruction * writer,struct schedule_instruction * reader) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/va/
H A Dpicture_mpeg4.c129 write_bit(struct bit_stream *writer, unsigned int bit) argument
131 assert(writer->length > (writer)->pos);
132 writer->data[writer->pos>>3] |= ((bit & 1)<<(7 - (writer->pos & 7)));
133 writer->pos++;
137 write_bits(struct bit_stream *writer, unsigned int bits, unsigned int len) argument
142 write_bit(writer, bits>>i);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog.c50 struct rc_variable * writer; local in function:r500_transform_IF
67 writer = list_ptr->Item;
69 * of writer, so if it has a reader other than
72 * If the writer has a lower IP than inst_if, this
73 * means that inst_if is above the writer in a loop.
77 if (writer->ReaderCount > 1 || writer->Inst->IP < inst_if->IP) {
84 * instruction between writer and inst_if, then
86 for (inst = writer->Inst; inst != inst_if; inst = inst->Next) {
132 writer
[all...]
H A Dradeon_dataflow.h108 struct rc_instruction * writer,
116 struct rc_instruction * writer,
H A Dradeon_dataflow.c682 struct rc_instruction * writer,
693 d->ReaderData->Writer = writer;
707 for(tmp = writer->Next; tmp != &d->C->Program.Instructions;
725 * the writer was written inside of a loop,
730 * back to the writer.
784 if (tmp == writer) {
823 * encounters an instruction that reads from @param writer and also a different
826 * writer = instruction 0;
833 * writer = instruction 1;
844 * writer
680 get_readers_for_single_write(void * userdata,struct rc_instruction * writer,rc_register_file dst_file,unsigned int dst_index,unsigned int dst_mask) argument
858 rc_get_readers(struct radeon_compiler * c,struct rc_instruction * writer,struct rc_reader_data * data,rc_read_src_fn read_normal_cb,rc_pair_read_arg_fn read_pair_cb,rc_read_write_mask_fn write_cb) argument
874 rc_get_readers_sub(struct radeon_compiler * c,struct rc_instruction * writer,struct rc_pair_sub_instruction * sub_writer,struct rc_reader_data * data,rc_read_src_fn read_normal_cb,rc_pair_read_arg_fn read_pair_cb,rc_read_write_mask_fn write_cb) argument
[all...]
H A Dradeon_optimize.c848 struct rc_variable * writer = var; local in function:peephole_mul_omod
852 writer->Inst->U.I.Omod = omod_op;
853 writer->Inst->U.I.DstReg.File = inst_mul->U.I.DstReg.File;
854 writer->Inst->U.I.DstReg.Index = inst_mul->U.I.DstReg.Index;
855 rc_normal_rewrite_writemask(writer->Inst, conversion_swizzle);
856 writer->Inst->U.I.SaturateMode = inst_mul->U.I.SaturateMode;
/xsrc/external/mit/MesaLib.old/dist/src/mesa/main/
H A Dtexcompress_bptc_tmp.h1177 write_bits(struct bit_writer *writer, int n_bits, int value) argument
1180 if (n_bits + writer->pos >= 8) {
1181 *(writer->dst++) = writer->buf | (value << writer->pos);
1182 writer->buf = 0;
1183 value >>= (8 - writer->pos);
1184 n_bits -= (8 - writer->pos);
1185 writer->pos = 0;
1187 writer
1313 write_rgb_indices_unorm(struct bit_writer * writer,int src_width,int src_height,const uint8_t * src,int src_rowstride,uint8_t endpoints[][4]) argument
1369 write_alpha_indices_unorm(struct bit_writer * writer,int src_width,int src_height,const uint8_t * src,int src_rowstride,uint8_t endpoints[][4]) argument
1420 struct bit_writer writer; local in function:compress_rgba_unorm_block
1596 write_rgb_indices_float(struct bit_writer * writer,int src_width,int src_height,const float * src,int src_rowstride,float endpoints[][3]) argument
1689 struct bit_writer writer; local in function:compress_rgb_float_block
[all...]
/xsrc/external/mit/MesaLib/dist/src/mesa/main/
H A Dtexcompress_bptc_tmp.h1174 write_bits(struct bit_writer *writer, int n_bits, int value) argument
1177 if (n_bits + writer->pos >= 8) {
1178 *(writer->dst++) = writer->buf | (value << writer->pos);
1179 writer->buf = 0;
1180 value >>= (8 - writer->pos);
1181 n_bits -= (8 - writer->pos);
1182 writer->pos = 0;
1184 writer
1310 write_rgb_indices_unorm(struct bit_writer * writer,int src_width,int src_height,const uint8_t * src,int src_rowstride,uint8_t endpoints[][4]) argument
1366 write_alpha_indices_unorm(struct bit_writer * writer,int src_width,int src_height,const uint8_t * src,int src_rowstride,uint8_t endpoints[][4]) argument
1417 struct bit_writer writer; local in function:compress_rgba_unorm_block
1593 write_rgb_indices_float(struct bit_writer * writer,int src_width,int src_height,const float * src,int src_rowstride,float endpoints[][3]) argument
1686 struct bit_writer writer; local in function:compress_rgb_float_block
[all...]
/xsrc/external/mit/pixman/dist/test/
H A Dfetch-test.c128 writer (void *src, uint32_t value, int size) function in typeref:typename:void
175 pixman_image_set_accessors (src_img, reader, writer);
176 pixman_image_set_accessors (dst_img, reader, writer);
/xsrc/external/mit/pixman/dist/demos/
H A Dcomposite-test.c66 writer (void *src, uint32_t value, int size) function in typeref:typename:void
133 pixman_image_set_accessors (dest_img, reader, writer);
/xsrc/external/mit/MesaLib/dist/src/freedreno/decode/
H A Dcrashdec.c731 } writer[6]; member in struct:dump_cp_mem_pool::__anon4090acc60308
732 uint32_t padding1[2]; /* Mirrors of writer[4], writer[5] */
794 data1.writer[queue].first_block);
797 printf("\t\twriter_chunk: %d\n", data1.writer[queue].chunk);
811 uint32_t last_chunk = data1.writer[queue].chunk;
812 uint32_t last_block = last_chunk > 3 ? data1.writer[queue].first_block
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_serialize.c1210 struct blob writer; local in function:nir_shader_serialize_deserialize
1211 blob_init(&writer);
1212 nir_serialize(&writer, s);
1216 blob_reader_init(&reader, writer.data, writer.size);
1219 blob_finish(&writer);

Completed in 28 milliseconds

12