Home | History | Annotate | Download | only in config

Lines Matching defs:newval

663   long newval;
671 newval = md_chars_to_number (where, 2);
672 newval |= 0x0 & 0x7f;
673 md_number_to_chars (where, newval, 2);
685 newval = md_chars_to_number (where, 2);
686 newval |= value & 0x03ff;
687 md_number_to_chars (where, newval, 2);
700 newval = md_chars_to_number (where, 2);
701 newval |= value & 0xfff;
702 md_number_to_chars (where, newval, 2);
734 newval = md_chars_to_number (where, 1);
735 newval = (newval & 0xf0) | (value & 0xf);
736 md_number_to_chars (where, newval, 1);
747 newval = md_chars_to_number (where, 2);
748 newval |= value & 0x03ff;
749 md_number_to_chars (where, newval, 2);