HomeSort by: relevance | last modified time | path
    Searched refs:sizeResult (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/cpl/trousers/dist/src/tddl/
tddl.c 163 int sizeResult;
184 if ((sizeResult = ioctl(opened_device->fd, TPMIOC_TRANSMIT, txBuffer)) != -1) {
192 if ((sizeResult = write(opened_device->fd,
196 sizeResult = read(opened_device->fd, txBuffer,
200 if (sizeResult == -1) {
206 "to write %d)", sizeResult,
216 if (sizeResult < 0) {
219 } else if (sizeResult == 0) {
224 if ((unsigned)sizeResult > *pReceiveBufLen) {
225 LogError("read %d bytes from device %s, (only room for %d)", sizeResult,
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
TreeTransform.h 5175 ExprResult SizeResult;
5179 SizeResult = getDerived().TransformExpr(T->getSizeExpr());
5181 if (SizeResult.isInvalid())
5183 SizeResult =
5184 SemaRef.ActOnFinishFullExpr(SizeResult.get(), /*DiscardedValue*/ false);
5185 if (SizeResult.isInvalid())
5188 Expr *Size = SizeResult.get();
5230 ExprResult sizeResult
5232 sizeResult = SemaRef.ActOnConstantExpression(sizeResult);
    [all...]

Completed in 62 milliseconds