• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libiconv-1.10/tools/

Lines Matching refs:x81

941   return 0x81+row;
947 if (byte >= 0x81 && byte < 0xff)
948 return byte-0x81;
971 enc.check_row_expr = "%1$s >= 0x81 && %1$s < 0xff";
973 enc.byte_row_expr = "%1$s - 0x81";
991 enc.check_row_expr = "%1$s >= 0x81 && %1$s < 0xff";
993 enc.byte_row_expr = "%1$s - 0x81";
1001 return 0x81+row;
1007 if (byte >= 0x81 && byte < 0xff)
1008 return byte-0x81;
1031 enc.check_row_expr = "%1$s >= 0x81 && %1$s < 0xff";
1033 enc.byte_row_expr = "%1$s - 0x81";
1050 enc.check_row_expr = "%1$s >= 0x81 && %1$s < 0xff";
1052 enc.byte_row_expr = "%1$s - 0x81";
1159 return 0x81 + row;
1165 if (byte >= 0x81 && byte < 0xa1)
1166 return byte-0x81;
1175 else if (byte >= 0x81 && byte < 0xff)
1191 enc.check_row_expr = "(%1$s >= 0x81 && %1$s < 0xa1)";
1192 enc.check_col_expr = "(%1$s >= 0x41 && %1$s < 0x5b) || (%1$s >= 0x61 && %1$s < 0x7b) || (%1$s >= 0x81 && %1$s < 0xff)";
1193 enc.byte_row_expr = "%1$s - 0x81";
1194 enc.byte_col_expr = "%1$s - (%1$s >= 0x81 ? 0x4d : %1$s >= 0x61 ? 0x47 : 0x41)";
1220 else if (byte >= 0x81 && byte < 0xa1)
1237 enc.check_col_expr = "(%1$s >= 0x41 && %1$s < 0x5b) || (%1$s >= 0x61 && %1$s < 0x7b) || (%1$s >= 0x81 && %1$s < 0xa1)";
1239 enc.byte_col_expr = "%1$s - (%1$s >= 0x81 ? 0x4d : %1$s >= 0x61 ? 0x47 : 0x41)";
1338 else if (byte >= 0x81 && byte < 0xff)
1355 enc.check_col_expr = "(%1$s >= 0x41 && %1$s < 0x7f) || (%1$s >= 0x81 && %1$s < 0xff)";
1357 enc.byte_col_expr = "%1$s - (%1$s >= 0x81 ? 0x43 : 0x41)";
1367 return (row >= 0x1f ? 0xc1 : 0x81) + row;
1373 if (byte >= 0x81 && byte < 0xa0)
1374 return byte-0x81;
1399 enc.check_row_expr = "(%1$s >= 0x81 && %1$s < 0xa0) || (%1$s >= 0xe0)";
1401 enc.byte_row_expr = "%1$s - (%1$s >= 0xe0 ? 0xc1 : 0x81)";
1444 if (!(i1 >= 0x81 && i1 <= 0x84
1446 && i3 >= 0x81 && i3 <= 0xfe
1451 i = (((i1-0x81) * 10 + (i2-0x30)) * 126 + (i3-0x81)) * 10 + (i4-0x30);
1561 printf(" if (c1 >= 0x81 && c1 <= 0x84) {\n");
1567 printf(" if (c3 >= 0x81 && c3 <= 0xfe) {\n");
1571 printf(" unsigned int i = (((c1 - 0x81) * 10 + (c2 - 0x30)) * 126 + (c3 - 0x81)) * 10 + (c4 - 0x30);\n");
1634 printf(" r[2] = (i %% 126) + 0x81; i = i / 126;\n");
1636 printf(" r[0] = i + 0x81;\n");