Lines Matching refs:temp
23 int32_t temp = 0; in readInt32() local
26 if (AParcel_readInt32(mParcel, &temp) != STATUS_OK) { in readInt32()
27 temp = 0; in readInt32()
29 return temp; in readInt32()
33 uint32_t temp = 0; in readUint32() local
36 if (AParcel_readUint32(mParcel, &temp) != STATUS_OK) { in readUint32()
37 temp = 0; in readUint32()
39 return temp; in readUint32()
43 float temp = 0.; in readFloat() local
44 if (AParcel_readFloat(mParcel, &temp) != STATUS_OK) { in readFloat()
45 temp = 0.; in readFloat()
47 return temp; in readFloat()