Lines Matching refs:size
31 UINT32 size, // IN: number of octets to moved in MemoryMove() argument
39 pAssert(size <= dSize); in MemoryMove()
42 dSize -= size; in MemoryMove()
43 if (p>q || (p+size <= q)) in MemoryMove()
45 while(size--) in MemoryMove()
52 p += size; in MemoryMove()
53 q += size; in MemoryMove()
55 while (size--) in MemoryMove()
75 UINT32 size // IN: size of bytes being compared in MemoryEqual() argument
84 for(; size > 0; size--) in MemoryEqual()
108 dest->size = 0; in MemoryCopy2B()
111 dest->size = source->size; in MemoryCopy2B()
112 MemoryMove(dest->buffer, source->buffer, dest->size, dSize); in MemoryCopy2B()
114 return dest->size; in MemoryCopy2B()
131 MemoryMove(&aInOut->buffer[aInOut->size], in MemoryConcat2B()
133 bIn->size, in MemoryConcat2B()
134 aSize - aInOut->size); in MemoryConcat2B()
135 aInOut->size = aInOut->size + bIn->size; in MemoryConcat2B()
156 if(aIn->size != bIn->size) in Memory2BEqual()
158 return MemoryEqual(aIn->buffer, bIn->buffer, aIn->size); in Memory2BEqual()
173 UINT32 size // IN: number of octets to fill in MemorySet() argument
177 while (size--) in MemorySet()
191 UINT32 size // Size, in bytes, required for the input in MemoryGetActionInputBuffer() argument
196 if(size > 0) in MemoryGetActionInputBuffer()
203 pAssert(size < sizeof(s_actionInputBuffer)); in MemoryGetActionInputBuffer()
206 for(size = (size + SZ - 1) / SZ; size > 0; size--) in MemoryGetActionInputBuffer()
263 BYTE *a = &auth->t.buffer[auth->t.size-1]; in MemoryRemoveTrailingZeros()
264 for(; auth->t.size > 0; auth->t.size--) in MemoryRemoveTrailingZeros()
269 return auth->t.size; in MemoryRemoveTrailingZeros()