Lines Matching defs:opcode
721 int opcode;
722 opcode = *(int8_t *)src++;
723 if (opcode >= 0) {
724 int size = opcode + 1;
741 int size = -opcode + 1;
867 unsigned ofsdst, ofssrc, opcode, x;
890 opcode = bytestream2_get_byte(&gb);
892 if (opcode == 0) {
893 opcode = bytestream2_get_byte(&gb);
896 while (opcode) {
904 opcode--;
906 } else if (opcode < 0x80) {
907 ofsdst += opcode * dstpitch;
909 opcode &= 0x7f;
911 while (opcode) {
919 opcode--;
1045 unsigned ofsdst, ofssrc, ofsdata, opcode, x;
1077 opcode = bytestream2_get_byte(&gb);
1079 if (opcode == 0) {
1080 opcode = bytestream2_get_byte(&gb);
1083 while (opcode) {
1087 opcode--;
1089 } else if (opcode < 0x80) {
1090 ofsdst += opcode * dstpitch;
1092 opcode &= 0x7f;
1094 while (opcode) {
1098 opcode--;
1113 unsigned ofsdst, ofssrc, ofsdata, opcode, x;
1146 opcode = bytestream2_get_byte(&gb);
1148 if (opcode == 0) {
1149 opcode = bytestream2_get_byte(&gb);
1157 if (ofsdst + (opcode - 1LL) * dstpitch > bytestream2_size_p(&pb))
1160 while (opcode) {
1168 opcode--;
1170 } else if (opcode < 0x80) {
1171 ofsdst += opcode * dstpitch;
1173 opcode &= 0x7f;
1175 while (opcode) {
1184 opcode--;
1199 unsigned ofsdst, ofssrc, opcode, x;
1222 opcode = bytestream2_get_be16(&gb);
1224 if (opcode == 0) {
1225 opcode = bytestream2_get_be16(&gb);
1228 while (opcode && bytestream2_get_bytes_left_p(&pb) > 1) {
1232 opcode--;
1234 } else if (opcode < 0x8000) {
1235 ofsdst += opcode * dstpitch;
1237 opcode &= 0x7fff;
1239 while (opcode && bytestream2_get_bytes_left(&gb) > 1 &&
1244 opcode--;
1259 unsigned ofsdst, ofssrc, opcode, x;
1289 opcode = bytestream2_get_be32(&gb);
1291 if (opcode == 0) {
1293 opcode = bytestream2_get_be16(&gb);
1296 opcode = bytestream2_get_be32(&gb);
1300 if (ofsdst + (opcode - 1LL) * dstpitch > bytestream2_size_p(&pb))
1303 while (opcode && bytestream2_get_bytes_left_p(&pb) > 1) {
1310 opcode--;
1312 } else if (opcode < skip) {
1313 ofsdst += opcode * dstpitch;
1315 opcode &= mask;
1317 while (opcode && bytestream2_get_bytes_left(&gb) > 1 &&
1326 opcode--;
1369 int32_t opcode = bytestream2_get_be32(&gb);
1373 if (opcode >= 0) {
1375 if (opcode && 4 + (opcode - 1LL) * pitch > bytestream2_get_bytes_left_p(&pb))
1377 while (opcode && bytestream2_get_bytes_left_p(&pb) > 0) {
1380 opcode--;
1383 while (opcode && bytestream2_get_bytes_left(&gb) > 0) {
1386 opcode++;
1425 int16_t opcode = bytestream2_get_be16(&gb);
1429 if (opcode >= 0) {
1431 while (opcode && bytestream2_get_bytes_left_p(&pb) > 0) {
1434 opcode--;
1437 opcode = -opcode;
1438 while (opcode && bytestream2_get_bytes_left(&gb) > 0) {
1441 opcode--;