Lines Matching full:plane
46 picoos_uint8 picotrns_unplane(picoos_int16 symIn, picoos_uint8 * plane) {
48 (*plane) = 0;
51 (*plane) = symIn >> 8;
62 picoos_uint8 plane;
64 sym = picotrns_unplane(insym, &plane);
65 switch (plane) {
695 * Add chars from NULLC-terminated string \c inStr, shifted to plane \c plane, to internal input buffer of
700 * @param plane
703 pico_status_t picotrns_stAddWithPlane(picotrns_SimpleTransducer this, picoos_char * inStr, picoos_uint8 plane)
707 this->possymBuf[this->possymWritePos].sym = (plane << 8) + (*inStr);
727 picoos_uint8 plane;
730 *outputSymIds++ = picotrns_unplane(this->possymBuf[this->possymReadPos++].sym, &plane);