Lines Matching defs:DT
31 * Note: DT is our counter value
43 unsigned char DT[DEFAULT_BLK_SZ];
91 hexdump("Input DT: ", ctx->DT, DEFAULT_BLK_SZ);
106 memcpy(tmp, ctx->DT, DEFAULT_BLK_SZ);
161 * Now update our DT value
164 ctx->DT[i] += 1;
165 if (ctx->DT[i] != 0)
172 hexdump("Output DT: ", ctx->DT, DEFAULT_BLK_SZ);
278 const unsigned char *V, const unsigned char *DT)
296 if (DT)
297 memcpy(ctx->DT, DT, DEFAULT_BLK_SZ);
299 memset(ctx->DT, 0, DEFAULT_BLK_SZ);
360 * interpreted as the tuple { V KEY DT}
361 * V and KEY are required during reset, and DT is optional, detected