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

<<21222324252627282930>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAToDFAConverter.java 43 protected List work = new LinkedList(); field in class:NFAToDFAConverter
83 while ( work.size()>0 &&
86 DFAState d = (DFAState) work.get(0);
112 work.remove(0); // done with it; remove from work list
191 work.add(startState);
202 //System.out.println("work on DFA state "+d);
240 return; // no more work to do on this accept state
378 * Clearly, alt 3 is predicted with extra work since it tests 0..7
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
antsupportlib.jar 
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 27 SuperMatrix *U, void *work, int lwork, \
35 U, work, lwork, B, X, recip_pivot_growth, rcond, \
51 SuperMatrix *U, void *work, int lwork, \
58 U, work, lwork, B, X, recip_pivot_growth, rcond, \
86 SuperMatrix *U, void *work, int lwork, \
93 U, work, lwork, B, X, recip_pivot_growth, rcond, \
    [all...]
  /external/libvorbis/lib/
mapping0.c 33 identical lookups. That will require minor work, so I'm putting it
632 float work[n/2];
634 work[j]=FLOOR1_fromdB_LOOKUP[iwork[i][j]];
635 _analysis_output(buf,seq,work,n/2,1,1,0);
660 float work[n/2];
662 work[j]=iwork[i][j];
663 _analysis_output(buf,seq,work,n/2,1,0,0);
psy.c 704 float *work=alloca(n*sizeof(*work)); local
709 for(i=0;i<n;i++)work[i]=logmdct[i]-logmask[i];
711 bark_noise_hybridmp(n,p->bark,work,logmask,0.,
714 for(i=0;i<n;i++)work[i]=logmdct[i]-work[i];
722 work2[i]=logmask[i]+work[i];
726 _analysis_output("median2R",seq/2,work,n,1,0,0);
728 _analysis_output("median2L",seq/2,work,n,1,0,0);
742 logmask[i]= work[i]+p->vi->noisecompand[dB]
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
bss.c 198 struct wpa_radio_work *work; local
201 work = radio_work_pending(wpa_s, "sme-connect");
202 if (!work)
203 work = radio_work_pending(wpa_s, "connect");
204 if (!work)
207 cwork = work->ctx;
212 "Update BSS pointer for the pending connect radio work");
    [all...]
  /prebuilts/go/darwin-x86/src/os/user/
lookup_unix.go 64 // reasons passing a size_t to getpwnam_r doesn't work on
99 // unknown reasons doesn't work on linux.
180 // unknown reasons doesn't work on linux.
  /prebuilts/go/linux-x86/src/os/user/
lookup_unix.go 64 // reasons passing a size_t to getpwnam_r doesn't work on
99 // unknown reasons doesn't work on linux.
180 // unknown reasons doesn't work on linux.
  /external/skia/src/pathops/
SkOpCoincidence.cpp 530 const SkOpSpanBase* work = overS->span(); local
536 const SkOpPtT* contained = work->contains(coinSeg);
538 if (work->final()) {
543 if (work->t() <= t) {
545 foundStart = work->ptT();
547 if (work->t() >= t) {
549 foundEnd = work->ptT();
552 SkASSERT(work->ptT() != overE);
553 } while ((work = work->upCast()->next()))
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
runtime2.go 386 // gcRescan is this G's index in work.rescan.list. If this is
390 // collector, writes to this are protected by work.rescan.lock.
397 // scan work. We track this in bytes to make it fast to update
399 // determines how this corresponds to scan work debt.
427 spinning bool // m is out of work and is actively looking for work
520 // gcw is this P's GC work buffer cache. The work buffer is
543 midle muintptr // idle m's waiting for work
544 nmidle int32 // number of idle m's waiting for work
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
runtime2.go 386 // gcRescan is this G's index in work.rescan.list. If this is
390 // collector, writes to this are protected by work.rescan.lock.
397 // scan work. We track this in bytes to make it fast to update
399 // determines how this corresponds to scan work debt.
427 spinning bool // m is out of work and is actively looking for work
520 // gcw is this P's GC work buffer cache. The work buffer is
543 midle muintptr // idle m's waiting for work
544 nmidle int32 // number of idle m's waiting for work
    [all...]
  /external/zlib/src/
make_vms.com 6 $! martin.zinser@eurexchange.com (work)
19 $! 0.07 20120115 Triggered by work done by Alexey Chupahin completly redesigned
21 $! 0.08 20120219 Make it work on VAX again, pre-load missing symbols to shared
141 $ work = f$edit(line, "compress,trim")
142 $ if f$extract(0,6,work) .nes. "#undef"
144 $ if f$extract(0,12,work) .nes. "#cmakedefine"
149 $ cdef = f$element(1," ",work)
  /prebuilts/go/darwin-x86/src/cmd/go/
build.go 80 -work
81 print the name of the temporary work directory and
159 var buildWork bool // -work flag
228 cmd.Flag.BoolVar(&buildWork, "work", false, "")
722 work string // the temporary work directory (ends in filepath.Separator)
796 b.work = "$WORK"
798 b.work, err = ioutil.TempDir("", "go-build")
803 fmt.Fprintf(os.Stderr, "WORK=%s\n", b.work
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
build.go 80 -work
81 print the name of the temporary work directory and
159 var buildWork bool // -work flag
228 cmd.Flag.BoolVar(&buildWork, "work", false, "")
722 work string // the temporary work directory (ends in filepath.Separator)
796 b.work = "$WORK"
798 b.work, err = ioutil.TempDir("", "go-build")
803 fmt.Fprintf(os.Stderr, "WORK=%s\n", b.work
    [all...]
  /external/curl/lib/
mprintf.c 580 char work[BUFFSIZE]; local
587 char *workend = &work[sizeof(work) - 2];
745 /* Put the number in WORK. */
937 (sprintf)(work, formatbuf, p->data.dnum);
939 for(fptr=work; *fptr; fptr++)
  /external/dnsmasq/contrib/dnslist/
dnslist.pl 330 0. This License applies to any program or other work which contains
333 refers to any such program or work, and a "work based on the Program"
334 means either the Program or any derivative work under copyright law:
335 that is to say, a work containing the Program or a portion of it,
343 is covered only if its contents constitute a work based on the
359 of it, thus forming a work based on the Program, and copy and
360 distribute such modifications or work under the terms of Section 1
366 b) You must cause any work that you distribute or publish, that in
379 does not normally print such an announcement, your work based o
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.common_3.6.0.v20100503.jar 
  /external/icu/tools/srcgen/currysrc/libs/
org.eclipse.equinox.common_3.7.0.v20150402-1709.jar 
  /prebuilts/devtools/tools/lib/
org-eclipse-equinox-common-3.6.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.common_3.6.200.v20130402-1505.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.6.0.v20100503.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-equinox-common/3.6.0/
org-eclipse-equinox-common-3.6.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.common_3.6.200.v20130402-1505.jar 
  /external/libvpx/libvpx/vp8/common/x86/
loopfilter_block_sse2_x86_64.asm 191 ; prep work
357 ; prep work
383 ; work on next 4 rows
451 ; work on next 4 rows
620 ; work on next 4 rows
688 ; work on next 4 rows
  /external/v8/src/compiler/
register-allocator-verifier.cc 353 // first) are also pending. To avoid recursion, we use a work list. To
361 auto work = worklist.front(); local
362 const PendingAssessment* current_assessment = work.first;
363 int current_virtual_register = work.second;

Completed in 557 milliseconds

<<21222324252627282930>>