Lines Matching refs:longArg
195 int64_t longArg = 0;
258 longArg = va_arg(args, int64_t);
259 outputHexBytes(longArg, 16, outBuf, &outIx, capacity);
307 longArg = *i8Ptr++;
311 longArg = *i16Ptr++;
315 longArg = *i32Ptr++;
319 longArg = *i64Ptr++;
324 longArg = *ptrPtr==NULL? 0: 1; /* test for null terminated array. */
330 longArg = *i8Ptr; /* for test for null terminated array. */
337 longArg = *ptrPtr==NULL? 0: 1; /* for test for null term. array. */
345 longArg = *ptrPtr==NULL? 0: 1; /* for test for null term. array. */
352 outputHexBytes(longArg, charsToOutput, outBuf, &outIx, capacity);
355 if (vectorLen == -1 && longArg == 0) {