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

1 2 3 45 6 7 8 91011>>

  /external/zlib/src/
inftrees.c 23 whose indices are 0..2^bits-1. work is a writable array of at least
24 lens shorts, which is used as a work area. type is the type of code
32 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work)
38 unsigned short FAR *work;
96 table. The sorted table is work[], with that space being provided by
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
183 base = extra = work; /* dummy value--not used */
219 if ((int)(work[sym]) < end) {
221 here.val = work[sym];
223 else if ((int)(work[sym]) > end)
    [all...]
  /cts/tests/JobScheduler/src/android/jobscheduler/cts/
EnqueueJobWorkTest.java 32 * Schedules jobs with the {@link android.app.job.JobScheduler} by enqueue work in to
72 fail("Didn't receive any expected work.");
79 JobWorkItem work = received.get(i); local
87 fail("Received more than " + expected.length + " work items, first extra is "
88 + work);
90 if (!intentEquals(work.getIntent(), expectedArray.get(i).intent)) {
91 fail("Received work #" + i + " " + work.getIntent() + " but expected " + expected[i]);
93 if (work.getDeliveryCount() != expectedArray.get(i).deliveryCount) {
94 fail("Received work #" + i + " " + work.getIntent() + " delivery count is
110 TestWorkItem[] work = new TestWorkItem[] { new TestWorkItem(work1) }; local
135 TestWorkItem[] work = new TestWorkItem[] { local
170 TestWorkItem[] work = new TestWorkItem[]{ local
266 TestWorkItem[] work = new TestWorkItem[] { local
    [all...]
  /frameworks/support/compat/java/android/support/v4/app/
JobIntentService.java 42 * Helper for processing work that has been enqueued for a job/service. When running on
43 * {@link android.os.Build.VERSION_CODES#O Android O} or later, the work will be dispatched
52 * <p>Use {@link #enqueueWork(Context, Class, int, Intent)} to enqueue new work to be
59 * you enqueue work until the job has been dispatched and while it is running). When running
68 * <li><p>When running as a pre-O service, the act of enqueueing work will generally start
106 * Base class for the target service we can deliver work to and the implementation of
107 * how to deliver that work.
129 abstract void enqueueWork(Intent work);
173 void enqueueWork(Intent work) {
174 Intent intent = new Intent(work);
290 JobWorkItem work = mParams.dequeueWork(); local
359 GenericWorkItem work; local
    [all...]
  /external/pdfium/third_party/zlib_v128/
inftrees.c 23 whose indices are 0..2^bits-1. work is a writable array of at least
24 lens shorts, which is used as a work area. type is the type of code
38 unsigned short FAR *work)
96 table. The sorted table is work[], with that space being provided by
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
183 base = extra = work; /* dummy value--not used */
219 if ((int)(work[sym]) < end) {
221 here.val = work[sym];
223 else if ((int)(work[sym]) > end) {
224 here.op = (unsigned char)(extra[work[sym]])
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
JobWorkService.java 45 * This is an example of implementing a {@link JobService} that dispatches work enqueued in
54 * This is a task to dequeue and process work in the background.
66 JobWorkItem work; local
69 * Iterate over available work. Once dequeueWork() returns null, the
70 * job's work queue is empty and the job has stopped, so we can let this
73 while (!(cancelled=isCancelled()) && (work=mParams.dequeueWork()) != null) {
74 String txt = work.getIntent().getStringExtra("name");
75 Log.i("JobWorkService", "Processing work: " + work + ", msg: " + txt);
78 // Process work here... we'll pretend by sleeping
    [all...]
  /external/libvorbis/lib/
lpc.c 142 float *work=alloca(sizeof(*work)*(m+n)); local
146 work[i]=0.f;
149 work[i]=prime[i];
156 y-=work[o++]*coeff[--p];
158 data[i]=work[o]=y;
  /external/skia/bench/
SkGlyphCacheBench.cpp 62 for (int work = 0; work < loops; work++) {
97 for (int work = 0; work < loops; work++) {
  /external/toolchain-utils/binary_search_tool/cros_pkg/
setup.sh 11 # the board for which this work is being done (e.g. 'daisy', 'lumpy','parrot',
31 WORK_BUILD=/build/${BOARD}.work
78 sudo ln -s /build/${BOARD}.work /build/${BOARD}
94 WORK_BUILD=/build/${BOARD}.work
  /hardware/interfaces/wifi/1.0/default/
hidl_return_util.h 45 WorkFuncT&& work,
50 hidl_cb((obj->*work)(std::forward<Args>(args)...));
63 WorkFuncT&& work,
68 const auto& ret_pair = (obj->*work)(std::forward<Args>(args)...);
89 WorkFuncT&& work,
94 const auto& ret_tuple = (obj->*work)(std::forward<Args>(args)...);
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug285.go 23 mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I1
81 m1[17] = 42 // this should work: 17 is assignment-compatible with I
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug285.go 23 mb[false] = 42 // this should work: false is assignment compatible with B
66 m0[z] = 42 // this should work: z is assignment-compatible with interface{}
69 })] = 42 // this should work: *struct{x int} is assignment-compatible with interface{}
70 m0[p] = 42 // this should work: p is assignment-compatible with interface{}
71 m0[false] = 42 // this should work: false is assignment-compatible with interface{}
72 m0[17] = 42 // this should work: 17 is assignment-compatible with interface{}
73 m0["foo"] = 42 // this should work: "foo" is assignment-compatible with interface{}
79 })] = 42 // this should work: *struct{x int} is assignment-compatible with I1
80 m1[false] = 42 // this should work: false is assignment-compatible with I1
81 m1[17] = 42 // this should work: 17 is assignment-compatible with I
    [all...]
  /external/tremolo/Tremolo/
codebook.c 239 ogg_uint32_t *work; local
249 s->dec_table=_ogg_malloc((s->entries*2+1)*sizeof(*work));
260 s->used_entries*2 > INT_MAX/((long) sizeof(*work)) - 1) return 1;
262 work=calloc((s->entries*2+1),sizeof(*work));
263 if (!work) return 1;
264 if(_make_words(lengthlist,s->entries,work,quantvals,s,opb,maptype)) goto error_out;
276 (((work[i] & 0x80000000UL) >> 24) | work[i]);
281 (((work[i] & 0x80000000UL) >> 16) | work[i])
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/
io_service.hpp 110 * @par Stopping the io_service from running out of work
113 * returning when there is no more work to do. For example, the io_service may
116 * creating an object of type asio::io_service::work:
119 * asio::io_service::work work(io_service);
128 * be allowed to finish normally, the work object may be explicitly destroyed.
131 * auto_ptr<asio::io_service::work> work(
132 * new asio::io_service::work(io_service));
134 * work.reset(); // Allow run() to exit. @endcod
605 class io_service::work class in class:asio::io_service
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 21 * Represents future work required to extract signals from notifications for ranking.
55 work(); method
89 public abstract void work(); method in class:RankingReconsideration
  /prebuilts/go/darwin-x86/test/
ddd2.go 7 // Test that variadic functions work across package boundaries.
  /prebuilts/go/linux-x86/test/
ddd2.go 7 // Test that variadic functions work across package boundaries.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/epiphany/
addr-syntax.s 7 ; Check that zero displacements work
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68k/
movem-offset.s 2 | Check that non-zero displacements work for movem.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/
v32-bin-1.d 6 # Test that pcrel relocs work with --oformat binary.
7 # Source code and "-m criself" doesn't work with *-linux-gnu.
  /external/fio/lib/
tp.h 23 struct flist_head work; member in struct:tp_data
  /external/mesa3d/src/gallium/state_trackers/xa/
README 32 composite / video work for the Xorg state tracker.
35 a number of interfaces to work with:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
loongson-2f-2.s 1 # Test the work around of the NOP issue of loongson2F
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
bittest.l 3 .*: Warning: Executing btst in IU in reverse serial may not work
4 .*: Warning: Executing bclr in IU may not work in parallel execution
5 .*: Warning: Executing bset in IU may not work
28 .* Warning: Executing btst in IU in reverse serial may not work
31 .* Warning: Executing bclr in IU may not work in parallel execution
39 .* Warning: Executing bset in IU may not work
  /external/webp/src/enc/
picture_rescale_enc.c 167 rescaler_t* const work,
173 num_channels, work);
197 rescaler_t* work; local
213 work = (rescaler_t*)WebPSafeMalloc(2ULL * width, sizeof(*work));
214 if (work == NULL) {
222 tmp.a, width, height, tmp.a_stride, work, 1);
229 tmp.y, width, height, tmp.y_stride, work, 1);
235 HALVE(width), HALVE(height), tmp.uv_stride, work, 1);
239 HALVE(width), HALVE(height), tmp.uv_stride, work, 1)
    [all...]
  /external/boringssl/src/ssl/test/runner/curve25519/
mont25519_amd64.go 35 var work [5][5]uint64
37 work[0] = *xr
38 setint(&work[1], 1)
39 setint(&work[2], 0)
40 work[3] = *xr
41 setint(&work[4], 1)
51 cswap(&work[1], uint64(swap))
52 ladderstep(&work)
58 *xr = work[1]
59 *zr = work[2
    [all...]

Completed in 444 milliseconds

1 2 3 45 6 7 8 91011>>