HomeSort by relevance Sort by last modified time
    Searched refs:work (Results 376 - 400 of 1470) sorted by null

<<11121314151617181920>>

  /external/libvorbis/lib/
block.c 419 float *work=alloca(v->pcm_current*sizeof(*work)); local
427 work[j]=v->pcm[i][v->pcm_current-j-1];
430 vorbis_lpc_from_data(work,lpc,v->pcm_current-v->centerW,order);
435 _analysis_output("predataL",0,work,v->pcm_current-v->centerW,0,0,0);
437 _analysis_output("predataR",0,work,v->pcm_current-v->centerW,0,0,0);
439 _analysis_output("predata",0,work,v->pcm_current-v->centerW,0,0,0);
444 vorbis_lpc_predict(lpc,work+v->pcm_current-v->centerW-order,
446 work+v->pcm_current-v->centerW,
450 v->pcm[i][v->pcm_current-j-1]=work[j]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lgc.c 1001 l_mem work = -cast(l_mem, g->GCmemtrav); /* start counting work */ local
1011 work += g->GCmemtrav; /* stop counting (do not (re)count grays) */
1014 work -= g->GCmemtrav; /* restart counting */
1021 work += g->GCmemtrav; /* stop counting (objects being finalized) */
1025 work -= g->GCmemtrav; /* restart counting */
1035 work += g->GCmemtrav; /* complete counting */
1036 return work; /* estimate of memory marked by 'atomic' */
1058 lu_mem work; local
1148 lu_mem work = singlestep(L); \/* do some work *\/ local
    [all...]
  /external/skia/third_party/lua/src/
lgc.c 994 l_mem work = -cast(l_mem, g->GCmemtrav); /* start counting work */ local
1004 work += g->GCmemtrav; /* stop counting (do not (re)count grays) */
1007 work -= g->GCmemtrav; /* restart counting */
1014 work += g->GCmemtrav; /* stop counting (objects being finalized) */
1018 work -= g->GCmemtrav; /* restart counting */
1028 work += g->GCmemtrav; /* complete counting */
1029 return work; /* estimate of memory marked by 'atomic' */
1051 lu_mem work; local
1055 work = atomic(L); /* add what was traversed by 'atomic' *
1141 lu_mem work = singlestep(L); \/* do some work *\/ local
    [all...]
  /external/syslinux/com32/lua/src/
lgc.c 1001 l_mem work = -cast(l_mem, g->GCmemtrav); /* start counting work */ local
1011 work += g->GCmemtrav; /* stop counting (do not (re)count grays) */
1014 work -= g->GCmemtrav; /* restart counting */
1021 work += g->GCmemtrav; /* stop counting (objects being finalized) */
1025 work -= g->GCmemtrav; /* restart counting */
1035 work += g->GCmemtrav; /* complete counting */
1036 return work; /* estimate of memory marked by 'atomic' */
1058 lu_mem work; local
1148 lu_mem work = singlestep(L); \/* do some work *\/ local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winsync.h 182 #warning COM interfaces with incorrect layout may not work at all.
216 #warning COM interfaces with incorrect layout may not work at all.
246 #warning COM interfaces with incorrect layout may not work at all.
288 #warning COM interfaces with incorrect layout may not work at all.
343 #warning COM interfaces with incorrect layout may not work at all.
379 #warning COM interfaces with incorrect layout may not work at all.
409 #warning COM interfaces with incorrect layout may not work at all.
462 #warning COM interfaces with incorrect layout may not work at all.
498 #warning COM interfaces with incorrect layout may not work at all.
530 #warning COM interfaces with incorrect layout may not work at all
    [all...]
mpeg2data.h 40 #warning COM interfaces with incorrect layout may not work at all.
80 #warning COM interfaces with incorrect layout may not work at all.
112 #warning COM interfaces with incorrect layout may not work at all.
functiondiscoveryapi.h 44 #warning COM interfaces with incorrect layout may not work at all.
104 #warning COM interfaces with incorrect layout may not work at all.
144 #warning COM interfaces with incorrect layout may not work at all.
176 #warning COM interfaces with incorrect layout may not work at all.
  /external/selinux/mcstrans/src/
mcstrans.c 1098 char *work = NULL; local
1109 work = strdup(level);
1110 if (!work) {
1114 work_len = strlen(work);
1121 log_debug(" compute_raw_from_trans work = %s\n", work);
1122 rc = pcre_exec(domain->base_classification_regexp, 0, work, work_len, 0, PCRE_ANCHORED, ovector, OVECCOUNT);
1125 pcre_get_substring(work, ovector, rc, 0, &match);
1142 memset(work + ovector[0], '#', ovector[1] - ovector[0]);
1143 char *p=work + ovector[0] + ovector[1]
    [all...]
  /external/eigen/unsupported/Eigen/src/FFT/
ei_kissfft_impl.h 64 void work( int stage,Complex * xout, const _Src * xin, size_t fstride,size_t in_stride) function in struct:Eigen::internal::kiss_cpx_fft
77 work(stage+1, xout , xin, fstride*p,in_stride);
279 get_plan(nfft,false).work(0, dst, src, 1,1);
310 get_plan(nfft,false).work(0, &m_tmpBuf1[0], src, 1,1);
340 get_plan(nfft,true).work(0, dst, src, 1,1);
372 get_plan(ncfft,true).work(0, reinterpret_cast<Complex*>(dst), &m_tmpBuf1[0], 1,1);
  /external/jemalloc/test/src/
SFMT.c 386 uint32_t work; local
400 work = 1;
402 if ((work & parity[i]) != 0) {
403 psfmt32[idxof(i)] ^= work;
406 work = work << 1;
  /libcore/ojluni/src/main/java/java/util/
ComparableTimSort.java 19 * 2 along with this work; if not, write to the Free Software Foundation,
49 * implementation, but 32 was empirically determined to work better in
116 * @param work a workspace array (slice)
117 * @param workBase origin of usable space in work array
118 * @param workLen usable size of work array
120 private ComparableTimSort(Object[] a, Object[] work, int workBase, int workLen) {
127 if (work == null || workLen < tlen || workBase + tlen > work.length) {
133 tmp = work;
174 * @param work a workspace array (slice
    [all...]
TimSort.java 19 * 2 along with this work; if not, write to the Free Software Foundation,
69 * implementation, but 32 was empirically determined to work better in
142 * @param work a workspace array (slice)
143 * @param workBase origin of usable space in work array
144 * @param workLen usable size of work array
146 private TimSort(T[] a, Comparator<? super T> c, T[] work, int workBase, int workLen) {
154 if (work == null || workLen < tlen || workBase + tlen > work.length) {
163 tmp = work;
205 * @param work a workspace array (slice
    [all...]
Calendar.java 19 * 2 along with this work; if not, write to the Free Software Foundation,
3196 Calendar work = (Calendar)this.clone(); local
3250 Calendar work = (Calendar)this.clone(); local
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/
build.sh 129 # Build the tool used to patch the FLASH image to work with the Beagle board ROM
136 echo Patching FD to work with BeagleBoard ROM
  /external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
executionengine.ml 95 if 4 != GenericValue.as_int res then bomb "plus did not work";
108 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
  /external/tremolo/Tremolo/
codec_internal.h 62 ogg_int32_t **work; member in struct:vorbis_dsp_state
  /external/vixl/tools/
threaded_tests.py 61 # work is started. So we abstract some additional state into global variables to
148 work = pool.map_async(RunTest, tests).get(9999999)
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
ndfdic.c 406 NJ_CHAR work[NJ_MAX_LEN + NJ_TERM_LEN]; local
441 len = convert_to_yomi(loc->handle, area, DATA_YOMI_SIZE(data), work, size);
450 nje_convert_hira_to_kata(work, candidate, len);
453 candidate[j] = work[j];
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
global_test.go 24 // Make a directory to work in.
71 // Make a directory to work in.
  /prebuilts/go/darwin-x86/src/internal/singleflight/
singleflight.go 27 // Group represents a class of work and forms a namespace in
28 // which units of work can be executed with duplicate suppression.
  /prebuilts/go/darwin-x86/src/testing/
sub_test.go 367 work := func(b *B) {
381 b.Run("", func(b *B) { work(b) })
383 b.Run("", func(b *B) { work(b) })
392 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
393 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
402 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
403 b.Run("", func(b *B) { work(b) })
404 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
global_test.go 24 // Make a directory to work in.
71 // Make a directory to work in.
  /prebuilts/go/linux-x86/src/internal/singleflight/
singleflight.go 27 // Group represents a class of work and forms a namespace in
28 // which units of work can be executed with duplicate suppression.
  /prebuilts/go/linux-x86/src/testing/
sub_test.go 367 work := func(b *B) {
381 b.Run("", func(b *B) { work(b) })
383 b.Run("", func(b *B) { work(b) })
392 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
393 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
402 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
403 b.Run("", func(b *B) { work(b) })
404 b.Run("", func(b *B) { b.SetBytes(10); work(b) })
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
group-reloc-ldrs.s 28 @ magnitude of the addend. So these should all (just) work.

Completed in 758 milliseconds

<<11121314151617181920>>