Home | History | Annotate | Download | only in common

Lines Matching refs:longArg

193     int64_t   longArg = 0;
256 longArg = va_arg(args, int64_t);
257 outputHexBytes(longArg, 16, outBuf, &outIx, capacity);
305 longArg = *i8Ptr++;
309 longArg = *i16Ptr++;
313 longArg = *i32Ptr++;
317 longArg = *i64Ptr++;
322 longArg = *ptrPtr==NULL? 0: 1; /* test for null terminated array. */
328 longArg = *i8Ptr; /* for test for null terminated array. */
335 longArg = *ptrPtr==NULL? 0: 1; /* for test for null term. array. */
343 longArg = *ptrPtr==NULL? 0: 1; /* for test for null term. array. */
350 outputHexBytes(longArg, charsToOutput, outBuf, &outIx, capacity);
353 if (vectorLen == -1 && longArg == 0) {