Are you looking for "fast" or short operators? Inc and Dec, as suggested, are the closest in function and length to += and -=, but they are also faster under some circumstances. If you have range checking turned on then they are faster then calling x := x + 1;
Here is the disassembly with range checking turned on, where all variables are a bytes (max value of $ff) for Inc(MyVar, x)
// Inc(MyVar, x);
add bl, x
And here it is for x := x + 1;
// x := x + 1;
movzx eax,bl
movzx edx, x
add eax,edx
cmp eax,$000000ff
jbe success
call @BoundErr
success:
mov ebx,eax
You can see the difference, even if there is not a range check failure.
However if you turn on Overflow checking, Inc is still subject to that overhead.