Lines Matching refs:DT
30 * Note: DT is our counter value
42 unsigned char DT[DEFAULT_BLK_SZ];
90 hexdump("Input DT: ", ctx->DT, DEFAULT_BLK_SZ);
105 memcpy(tmp, ctx->DT, DEFAULT_BLK_SZ);
160 * Now update our DT value
163 ctx->DT[i] += 1;
164 if (ctx->DT[i] != 0)
171 hexdump("Output DT: ", ctx->DT, DEFAULT_BLK_SZ);
277 const unsigned char *V, const unsigned char *DT)
295 if (DT)
296 memcpy(ctx->DT, DT, DEFAULT_BLK_SZ);
298 memset(ctx->DT, 0, DEFAULT_BLK_SZ);
359 * interpreted as the tuple { V KEY DT}
360 * V and KEY are required during reset, and DT is optional, detected