Searched refs:a_size (Results 1 - 10 of 10) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_opt_large_constants.c50 uint32_t a_size = a->constant_data_size; local in function:var_info_cmp
55 } else if (a_size < b_size) {
57 } else if (a_size > b_size) {
59 } else if (a_size == 0) {
63 return memcmp(a->constant_data, b->constant_data, a_size);
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-utils.c141 int a_size, r_size, g_size, b_size; local in function:pixman_expand_to_float
154 a_size = PIXMAN_FORMAT_A (format);
159 a_shift = 32 - a_size;
164 a_mask = ((1 << a_size) - 1);
169 a_mul = multipliers[a_size];
H A Dpixman-bits-image.c1143 int a_size = PIXMAN_FORMAT_A (format); local in function:dither_apply_ordered
1148 float a_scale = dither_compute_scale (a_size);
/xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/
H A Dgtest-internal.h1077 void InitCopy(const Element* array, size_t a_size) { argument
1078 Element* const copy = new Element[a_size];
1079 CopyArray(array, a_size, copy);
1081 size_ = a_size;
1086 void InitRef(const Element* array, size_t a_size) { argument
1088 size_ = a_size;
/xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/
H A Dgtest-internal.h1077 void InitCopy(const Element* array, size_t a_size) { argument
1078 Element* const copy = new Element[a_size];
1079 CopyArray(array, a_size, copy);
1081 size_ = a_size;
1086 void InitRef(const Element* array, size_t a_size) { argument
1088 size_ = a_size;
/xsrc/external/mit/xorg-server.old/dist/hw/kdrive/ephyr/
H A Dephyrvideo.c88 int *a_size) ;
721 int *a_size)
726 EPHYR_RETURN_VAL_IF_FAIL (a_size, FALSE) ;
731 &width, &height, a_size, NULL, NULL)) {
717 ephyrXVPrivGetImageBufSize(int a_port_id,int a_image_id,unsigned short a_width,unsigned short a_height,int * a_size) argument
/xsrc/external/mit/xorg-server/dist/hw/kdrive/ephyr/
H A Dephyrvideo.c80 unsigned short a_height, int *a_size);
675 unsigned short a_height, int *a_size)
682 EPHYR_RETURN_VAL_IF_FAIL(a_size, FALSE);
693 *a_size = reply->data_size;
672 ephyrXVPrivGetImageBufSize(int a_port_id,int a_image_id,unsigned short a_width,unsigned short a_height,int * a_size) argument
/xsrc/external/mit/MesaLib/dist/src/amd/compiler/
H A Daco_insert_NOPs.cpp201 regs_intersect(PhysReg a_reg, unsigned a_size, PhysReg b_reg, unsigned b_size) argument
203 return a_reg > b_reg ? (a_reg - b_reg < b_size) : (b_reg - a_reg < a_size);
H A Daco_lower_to_hw_instr.cpp1010 get_intersection_mask(int a_start, int a_size, int b_start, int b_size) argument
1014 if (intersection_start >= a_size || intersection_end == 0)
1017 uint32_t mask = u_bit_consecutive(0, a_size);
/xsrc/external/mit/MesaLib/dist/src/amd/llvm/
H A Dac_llvm_build.c606 unsigned a_size = ac_get_llvm_num_components(a); local in function:ac_build_concat
609 LLVMValueRef *elems = alloca((a_size + b_size) * sizeof(LLVMValueRef));
610 for (unsigned i = 0; i < a_size; i++)
613 elems[a_size + i] = ac_llvm_extract_elem(ctx, b, i);
615 return ac_build_gather_values(ctx, elems, a_size + b_size);

Completed in 33 milliseconds