HomeSort by relevance Sort by last modified time
    Searched refs:Tsize (Results 1 - 9 of 9) sorted by null

  /external/libdivsufsort/android_include/
divsufsort.h 143 * @param T[0..Tsize-1] The input string.
144 * @param Tsize The length of the given string.
154 sa_search(const sauchar_t *T, saidx_t Tsize,
161 * @param T[0..Tsize-1] The input string.
162 * @param Tsize The length of the given string.
171 sa_simplesearch(const sauchar_t *T, saidx_t Tsize,
divsufsort64.h 143 * @param T[0..Tsize-1] The input string.
144 * @param Tsize The length of the given string.
154 sa_search64(const sauchar_t *T, saidx64_t Tsize,
161 * @param T[0..Tsize-1] The input string.
162 * @param Tsize The length of the given string.
171 sa_simplesearch64(const sauchar_t *T, saidx64_t Tsize,
  /external/libdivsufsort/lib/
utils.c 246 _compare(const sauchar_t *T, saidx_t Tsize,
252 (i < Tsize) && (j < Psize) && ((r = T[i] - P[j]) == 0); ++i, ++j) { }
259 sa_search(const sauchar_t *T, saidx_t Tsize,
271 (Tsize < 0) || (Psize < 0) || (SAsize < 0)) { return -1; }
272 if((Tsize == 0) || (SAsize == 0)) { return 0; }
279 r = _compare(T, Tsize, P, Psize, SA[i + half], &match);
294 r = _compare(T, Tsize, P, Psize, SA[j + half], &lmatch);
309 r = _compare(T, Tsize, P, Psize, SA[k + half], &rmatch);
329 sa_simplesearch(const sauchar_t *T, saidx_t Tsize,
337 if((T == NULL) || (SA == NULL) || (Tsize < 0) || (SAsize < 0)) { return -1;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Mtftp4Dxe/
Mtftp4Option.h 33 UINT32 Tsize;
Mtftp4Option.c 20 "tsize",
457 } else if (NetStringEqualNoCase (This->OptionStr, (UINT8 *) "tsize")) {
459 // tsize option, the biggest transfer supported is 4GB with block size option
461 MtftpOption->Tsize = NetStringToU32 (This->ValueStr);
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Option.h 48 UINT32 Tsize;
Mtftp6Option.c 21 "tsize",
205 } else if (AsciiStriCmp ((CHAR8 *) Opt->OptionStr, "tsize") == 0) {
207 // tsize option, the biggest transfer supported is 4GB with block size option
209 ExtInfo->Tsize = (UINT32) AsciiStrDecimalToUintn ((CHAR8 *) Opt->ValueStr);
  /external/libdivsufsort/include/
divsufsort.h.cmake 143 * @param T[0..Tsize-1] The input string.
144 * @param Tsize The length of the given string.
154 sa_search@W64BIT@(const sauchar_t *T, saidx@W64BIT@_t Tsize,
161 * @param T[0..Tsize-1] The input string.
162 * @param Tsize The length of the given string.
171 sa_simplesearch@W64BIT@(const sauchar_t *T, saidx@W64BIT@_t Tsize,
  /external/tensorflow/tensorflow/core/kernels/
barrier_ops.cc 661 Tensor* Tsize = nullptr;
662 OP_REQUIRES_OK_ASYNC(ctx, ctx->allocate_output(0, TensorShape({}), &Tsize),
664 Tsize->scalar<int32>().setConstant(barrier->incomplete_size());
680 Tensor* Tsize = nullptr;
681 OP_REQUIRES_OK_ASYNC(ctx, ctx->allocate_output(0, TensorShape({}), &Tsize),
683 Tsize->scalar<int32>().setConstant(barrier->ready_size());

Completed in 465 milliseconds