I don't know of a public convention but have used the following in my own code :
var dfrd
: a Deferred object (I've don't recall ever needing two or more in the same scope)
var p
: a Promise
var p_foo
: one of several named Promises
var promises
: an array or plain object containing Promises
The exception is a jqXHR
object, which I will name var jqXHR
(again, I don't recall ever needing two or more in the same scope).