Searched refs:total_len (Results 1 - 11 of 11) sorted by relevance

/xsrc/external/mit/xorg-server.old/dist/Xi/
H A Dxiquerydevice.c409 int len = 0, total_len = 0; local in function:ListDeviceInfo
416 total_len = sizeof(xXIDeviceInfo);
422 total_len += len;
424 total_len += ListDeviceClasses(client, dev, any, &info->num_classes);
425 return total_len;
437 int total_len = 0; local in function:ListDeviceClasses
450 total_len += len;
458 total_len += len;
466 total_len += len;
469 return total_len;
[all...]
H A Dxiproperty.c709 unsigned long total_len; local in function:XIChangeDeviceProperty
740 total_len = len;
742 total_len = prop_value->size + len;
748 total_size = total_len * size_in_bytes;
756 new_value.size = total_len;
/xsrc/external/mit/xorg-server/dist/Xi/
H A Dxiquerydevice.c544 int len = 0, total_len = 0; local in function:ListDeviceInfo
551 total_len = sizeof(xXIDeviceInfo);
557 total_len += len;
559 total_len += ListDeviceClasses(client, dev, any, &info->num_classes);
560 return total_len;
572 int total_len = 0; local in function:ListDeviceClasses
584 total_len += len;
591 total_len += len;
598 total_len += len;
606 total_len
[all...]
H A Dxiproperty.c690 unsigned long total_len; local in function:XIChangeDeviceProperty
720 total_len = len;
722 total_len = prop_value->size + len;
727 new_value.data = xallocarray(total_len, size_in_bytes);
728 if (!new_value.data && total_len && size_in_bytes) {
733 new_value.size = total_len;
/xsrc/external/mit/fontconfig/dist/src/
H A Dfcatomic.c80 int total_len = (sizeof (FcAtomic) + local in function:FcAtomicCreate
85 FcAtomic *atomic = malloc (total_len);
/xsrc/external/mit/xorg-server/dist/randr/
H A Drrproviderproperty.c144 unsigned long total_len; local in function:RRChangeProviderProperty
176 total_len = len;
178 total_len = prop_value->size + len;
182 if (total_len > MAXINT / size_in_bytes)
184 total_size = total_len * size_in_bytes;
H A Drrproperty.c167 unsigned long total_len; local in function:RRChangeOutputProperty
199 total_len = len;
201 total_len = prop_value->size + len;
206 new_value.data = xallocarray(total_len, size_in_bytes);
207 if (!new_value.data && total_len && size_in_bytes) {
212 new_value.size = total_len;
/xsrc/external/mit/MesaLib/dist/src/util/
H A Dxxhash.h339 XXH64_hash_t total_len; member in struct:XXH64_state_s
1341 state->total_len += len;
1393 if (state->total_len >= 32) {
1408 h64 += (xxh_u64) state->total_len;
1410 return XXH64_finalize(h64, (const xxh_u8*)state->mem64, (size_t)state->total_len, XXH_aligned);
/xsrc/external/mit/xorg-server.old/dist/randr/
H A Drrproperty.c144 unsigned long total_len; local in function:RRChangeOutputProperty
177 total_len = len;
179 total_len = prop_value->size + len;
185 total_size = total_len * size_in_bytes;
193 new_value.size = total_len;
/xsrc/external/mit/libX11/dist/modules/lc/gen/
H A DlcGenConv.c444 int seq_len, name_len, total_len; local in function:cmp_esc_sequence
488 total_len = seq_len + name_len + 3;
489 return(total_len);
1065 int total_len, seq_len, name_len; local in function:wcstocts
1125 total_len = seq_len;
1128 total_len = seq_len + name_len + 2;
1142 if (*to_left < total_len + 1) {
1162 (*to_left) -= total_len;
/xsrc/external/mit/pixman/dist/pixman/
H A Dpixman-rvv.c51 #define _RVV_FE_PRE(total_len, vn, vl, vspec) \
52 size_t vn = total_len, vl = __riscv_vsetvl_##vspec (vn); \
57 #define RVV_FOREACH_1(total_len, vl, vspec, p1) \
58 for (_RVV_FE_PRE (total_len, vn, vl, vspec); \
61 #define RVV_FOREACH_2(total_len, vl, vspec, p1, p2) \
62 for (_RVV_FE_PRE (total_len, vn, vl, vspec); \
65 #define RVV_FOREACH_3(total_len, vl, vspec, p1, p2, p3) \
66 for (_RVV_FE_PRE (total_len, vn, vl, vspec); \

Completed in 31 milliseconds