Home
last modified time | relevance | path

Searched refs:Tsize (Results 1 – 5 of 5) sorted by relevance

/external/libdivsufsort/lib/
Dutils.c246 _compare(const sauchar_t *T, saidx_t Tsize, in _compare() argument
252 (i < Tsize) && (j < Psize) && ((r = T[i] - P[j]) == 0); ++i, ++j) { } in _compare()
259 sa_search(const sauchar_t *T, saidx_t Tsize, in sa_search() argument
271 (Tsize < 0) || (Psize < 0) || (SAsize < 0)) { return -1; } in sa_search()
272 if((Tsize == 0) || (SAsize == 0)) { return 0; } in sa_search()
279 r = _compare(T, Tsize, P, Psize, SA[i + half], &match); in sa_search()
294 r = _compare(T, Tsize, P, Psize, SA[j + half], &lmatch); in sa_search()
309 r = _compare(T, Tsize, P, Psize, SA[k + half], &rmatch); in sa_search()
329 sa_simplesearch(const sauchar_t *T, saidx_t Tsize, in sa_simplesearch() argument
337 if((T == NULL) || (SA == NULL) || (Tsize < 0) || (SAsize < 0)) { return -1; } in sa_simplesearch()
[all …]
/external/libdivsufsort/include/
Ddivsufsort.h.cmake143 * @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/libdivsufsort/android_include/
Ddivsufsort.h154 sa_search(const sauchar_t *T, saidx_t Tsize,
171 sa_simplesearch(const sauchar_t *T, saidx_t Tsize,
Ddivsufsort64.h154 sa_search64(const sauchar_t *T, saidx64_t Tsize,
171 sa_simplesearch64(const sauchar_t *T, saidx64_t Tsize,
/external/tensorflow/tensorflow/core/kernels/
Dbarrier_ops.cc661 Tensor* Tsize = nullptr; in ComputeAsync() local
662 OP_REQUIRES_OK_ASYNC(ctx, ctx->allocate_output(0, TensorShape({}), &Tsize), in ComputeAsync()
664 Tsize->scalar<int32>().setConstant(barrier->incomplete_size()); in ComputeAsync()
680 Tensor* Tsize = nullptr; in ComputeAsync() local
681 OP_REQUIRES_OK_ASYNC(ctx, ctx->allocate_output(0, TensorShape({}), &Tsize), in ComputeAsync()
683 Tsize->scalar<int32>().setConstant(barrier->ready_size()); in ComputeAsync()