Home
last modified time | relevance | path

Searched refs:parity (Results 1 – 9 of 9) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
Dvp9_boolcoder_test.cc37 const int parity = i & 1; in TEST() local
42 (method == 4) ? (parity ? 0 : 255) : in TEST()
44 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) : in TEST()
46 (parity ? rnd(64) : 255 - rnd(64)) : in TEST()
47 (parity ? rnd(32) : 255 - rnd(32)); in TEST()
Dvp8_boolcoder_test.cc64 const int parity = i & 1; in TEST() local
69 (method == 4) ? (parity ? 0 : 255) : in TEST()
71 (method == 5) ? (parity ? rnd(128) : 255 - rnd(128)) : in TEST()
73 (parity ? rnd(64) : 255 - rnd(64)) : in TEST()
74 (parity ? rnd(32) : 255 - rnd(32)); in TEST()
/hardware/broadcom/libbt/src/
Duserial_vendor.c196 uint16_t parity; in userial_vendor_open() local
221 parity = 0; in userial_vendor_open()
223 parity = PARENB; in userial_vendor_open()
225 parity = (PARENB | PARODD); in userial_vendor_open()
/hardware/bsp/intel/peripheral/libmraa/api/mraa/
Duart.hpp206 setMode(int bytesize, UartParity parity, int stopbits) in setMode() argument
208 return (Result) mraa_uart_set_mode(m_uart, bytesize, (mraa_uart_parity_t) parity, stopbits); in setMode()
Duart.h97 mraa_result_t mraa_uart_set_mode(mraa_uart_context dev, int bytesize, mraa_uart_parity_t parity, in…
/hardware/qcom/bt/msm8996/libbt-vendor/src/
Dhci_uart.c231 uint16_t parity; in userial_vendor_open() local
256 parity = 0; in userial_vendor_open()
258 parity = PARENB; in userial_vendor_open()
260 parity = (PARENB | PARODD); in userial_vendor_open()
/hardware/qcom/bt/msm8992/libbt-vendor/src/
Dhci_uart.c231 uint16_t parity; in userial_vendor_open() local
256 parity = 0; in userial_vendor_open()
258 parity = PARENB; in userial_vendor_open()
260 parity = (PARENB | PARODD); in userial_vendor_open()
/hardware/qcom/bt/msm8909/libbt-vendor/src/
Dhci_uart.c230 uint16_t parity; in userial_vendor_open() local
255 parity = 0; in userial_vendor_open()
257 parity = PARENB; in userial_vendor_open()
259 parity = (PARENB | PARODD); in userial_vendor_open()
/hardware/bsp/intel/peripheral/libmraa/src/uart/
Duart.c309 mraa_uart_set_mode(mraa_uart_context dev, int bytesize, mraa_uart_parity_t parity, int stopbits) in mraa_uart_set_mode() argument
352 switch (parity) { in mraa_uart_set_mode()