Home
last modified time | relevance | path

Searched refs:data_bits (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/third_party/externals/sdl/src/video/x11/
DSDL_x11mouse.c125 Uint8 *data_bits, *mask_bits; in X11_CreatePixmapCursor() local
131 data_bits = SDL_calloc(1, surface->h * width_bytes); in X11_CreatePixmapCursor()
132 if (!data_bits) { in X11_CreatePixmapCursor()
139 SDL_free(data_bits); in X11_CreatePixmapCursor()
163 data_bits[y * width_bytes + x / 8] |= (0x01 << (x % 8)); in X11_CreatePixmapCursor()
190 (char*)data_bits, in X11_CreatePixmapCursor()
/third_party/jerryscript/jerry-ext/debugger/
Ddebugger-serial.c47 uint32_t data_bits; /**< specify the number of data bits to transmit over the serial interface */ member
126 switch (serial_config.data_bits) in jerryx_debugger_serial_configure_attributes()
150 JERRYX_ERROR_MSG ("Unsupported data bits: %d\n", serial_config.data_bits); in jerryx_debugger_serial_configure_attributes()
340 serial_config.data_bits = (token = strtok (NULL, ",")) ? (uint32_t) strtoul (token, NULL, 10) : 8; in jerryx_debugger_serial_create()
/third_party/gstreamer/gstplugins_bad/ext/closedcaption/
Dbit_slicer.c668 unsigned int data_bits; in vbi3_bit_slicer_set_params() local
852 data_bits = payload_bits + frc_bits; in vbi3_bit_slicer_set_params()
853 data_samples = (sampling_rate * (int64_t) data_bits) / payload_rate; in vbi3_bit_slicer_set_params()
855 bs->total_bits = cri_bits + data_bits; in vbi3_bit_slicer_set_params()
/third_party/mesa3d/src/amd/compiler/
Daco_validate.cpp499 unsigned data_bits = instr->operands[0].getTemp().bytes() * 8u; in validate_ir() local
504 check(op_bits < data_bits, "Size must be smaller than source", instr.get()); in validate_ir()
508 check(data_bits >= op_bits, "Can't extract more bits than what the data has.", in validate_ir()
512 unsigned comp = data_bits / MAX2(op_bits, 1); in validate_ir()
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h62992 u8 data_bits; member