HomeSort by relevance Sort by last modified time
    Searched refs:work (Results 26 - 50 of 3029) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
OpenWnnDictionaryImplJni.java 176 * Create a internal work area.
177 * A internal work area is allocated dynamically, and the specified dictionary library is loaded.
180 * @return The internal work area or null
185 * Free the internal work area.
186 * The specified work area and the loaded dictionary library is free.
188 * @param work The internal work area
191 public static final native int freeWnnWork( long work );
197 * @param work The internal work are
    [all...]
  /external/kernel-headers/original/linux/
completion.h 18 #define COMPLETION_INITIALIZER(work) \
19 { 0, __WAIT_QUEUE_HEAD_INITIALIZER((work).wait) }
21 #define COMPLETION_INITIALIZER_ONSTACK(work) \
22 ({ init_completion(&work); work; })
24 #define DECLARE_COMPLETION(work) \
25 struct completion work = COMPLETION_INITIALIZER(work)
33 # define DECLARE_COMPLETION_ONSTACK(work) \
34 struct completion work = COMPLETION_INITIALIZER_ONSTACK(work
    [all...]
workqueue.h 2 * workqueue.h --- work queue handling for Linux.
24 struct work_struct work; member in struct:execute_work
38 * initialize a work-struct's func and data pointers:
47 * initialize all of a work-struct:
64 extern int FASTCALL(queue_work(struct workqueue_struct *wq, struct work_struct *work));
65 extern int FASTCALL(queue_delayed_work(struct workqueue_struct *wq, struct work_struct *work, unsigned long delay));
67 struct work_struct *work, unsigned long delay);
70 extern int FASTCALL(schedule_work(struct work_struct *work));
71 extern int FASTCALL(schedule_delayed_work(struct work_struct *work, unsigned long delay));
73 extern int schedule_delayed_work_on(int cpu, struct work_struct *work, unsigned long delay)
    [all...]
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/
OpenWnnDictionaryImplJni.c 208 NJ_JNIWORK* work; local
210 /* Allocating the internal work area */
211 work = ( NJ_JNIWORK* )malloc( sizeof( NJ_JNIWORK ) );
212 if( work != NULL ) {
221 /* Initialize the work area */
222 memset( work, 0x00, sizeof( NJ_JNIWORK ) );
227 free( work );
231 work->dicLibHandle = ( void* )dlopen( dicLibPath, RTLD_LAZY );
234 if( work->dicLibHandle == NULL ) {
235 free( work );
287 NJ_JNIWORK* work; local
313 NJ_JNIWORK* work; local
343 NJ_JNIWORK* work; local
387 NJ_JNIWORK* work; local
455 NJ_JNIWORK* work; local
499 NJ_JNIWORK* work; local
532 NJ_JNIWORK* work; local
565 NJ_JNIWORK* work; local
589 NJ_JNIWORK* work; local
618 NJ_JNIWORK* work; local
670 NJ_JNIWORK *work; local
729 NJ_JNIWORK* work; local
748 NJ_JNIWORK* work; local
767 NJ_JNIWORK* work; local
788 NJ_JNIWORK* work; local
822 NJ_JNIWORK* work; local
856 NJ_JNIWORK* work; local
891 NJ_JNIWORK* work; local
926 NJ_JNIWORK* work; local
947 NJ_JNIWORK* work; local
1001 NJ_JNIWORK* work; local
1055 NJ_JNIWORK* work; local
1124 NJ_JNIWORK* work; local
1151 NJ_JNIWORK* work; local
1178 NJ_JNIWORK* work; local
1236 NJ_JNIWORK* work; local
1342 NJ_JNIWORK* work; local
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
AsyncQueryServiceTest.java 88 final OperationInfo[] work = new OperationInfo[1]; local
89 work[index] = new OperationInfo();
90 work[index].op = Operation.EVENT_ARG_QUERY;
92 work[index].token = ++mId;
93 work[index].cookie = ++mId;
94 work[index].uri = Uri.parse(AUTHORITY_URI + "blah");
95 work[index].projection = TEST_PROJECTION;
96 work[index].selection = TEST_SELECTION;
97 work[index].selectionArgs = TEST_SELECTION_ARGS;
98 work[index].orderBy = "order"
117 final OperationInfo[] work = new OperationInfo[1]; local
143 final OperationInfo[] work = new OperationInfo[1]; local
171 final OperationInfo[] work = new OperationInfo[1]; local
201 final OperationInfo[] work = new OperationInfo[1]; local
234 OperationInfo[] work = new OperationInfo[5]; local
255 OperationInfo[] work = new OperationInfo[5]; local
283 OperationInfo[] work = new OperationInfo[5]; local
315 OperationInfo[] work = new OperationInfo[5]; local
345 OperationInfo work = new OperationInfo(); local
    [all...]
  /external/valgrind/main/coregrind/m_demangle/
cplus-dem.c 70 #define CURRENT_DEMANGLING_STYLE work->options
162 #define PRINT_ANSI_QUALIFIERS (work -> options & DMGL_ANSI)
163 #define PRINT_ARG_TYPES (work -> options & DMGL_PARAMS)
340 #define SCOPE_STRING(work) ((work->options & DMGL_JAVA) ? "." : "::")
366 demangle_template_template_parm (struct work_stuff *work,
370 demangle_template (struct work_stuff *work, const char **, string *,
657 struct work_stuff work[1]; local
663 memset ((char *) work, 0, sizeof (work));
866 struct work_stuff work[1]; local
    [all...]
  /external/chromium/chrome/browser/sync/glue/
password_model_worker.cc 24 void PasswordModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) {
28 work, &done));
32 void PasswordModelWorker::CallDoWorkAndSignalTask(Callback0::Type* work,
34 work->Run();
database_model_worker.h 25 virtual void DoWorkAndWaitUntilDone(Callback0::Type* work);
30 void CallDoWorkAndSignalTask(Callback0::Type* work,
database_model_worker.cc 14 void DatabaseModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) {
17 work->Run();
23 work, &done))) {
30 void DatabaseModelWorker::CallDoWorkAndSignalTask(Callback0::Type* work,
33 work->Run();
history_model_worker.cc 19 WorkerTask(Callback0::Type* work, WaitableEvent* done)
20 : work_(work), done_(done) {}
46 void HistoryModelWorker::DoWorkAndWaitUntilDone(Callback0::Type* work) {
48 scoped_refptr<WorkerTask> task(new WorkerTask(work, &done));
password_model_worker.h 32 virtual void DoWorkAndWaitUntilDone(Callback0::Type* work);
37 void CallDoWorkAndSignalTask(Callback0::Type* work,
ui_model_worker.h 24 // A ModelSafeWorker for UI models (e.g. bookmarks) that accepts work requests
40 CallDoWorkAndSignalTask(Callback0::Type* work,
43 : work_(work), work_done_(work_done), scheduler_(scheduler) {
51 // Task data - a closure and a waitable event to signal after the work has
65 // processed and that syncapi will not schedule any further work for us to do.
69 virtual void DoWorkAndWaitUntilDone(Callback0::Type* work);
74 // assume no work will ever be scheduled again from now on. If it has any work
95 // We have come to a complete stop, no scheduled work remains, and no work
    [all...]
  /external/clang/test/CodeGen/
2003-11-01-C99-CompoundLiteral.c 6 struct wait_queue_head_t work = { lock: (spinlock_t) { 0 }, }; local
  /external/wpa_supplicant_8/src/crypto/
des-internal.c 320 u32 work, right, leftt; local
326 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
327 right ^= work;
328 leftt ^= (work << 4);
330 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
331 right ^= work;
332 leftt ^= (work << 16);
334 work = ((right >> 2) ^ leftt) & 0x33333333L;
335 leftt ^= work;
336 right ^= (work << 2)
403 u32 ek[32], work[2]; local
436 u32 work[2]; local
447 u32 work[2]; local
470 u32 work[2]; local
484 u32 work[2]; local
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
des.c 328 u32 work, right, leftt; local
334 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
335 right ^= work;
336 leftt ^= (work << 4);
338 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
339 right ^= work;
340 leftt ^= (work << 16);
342 work = ((right >> 2) ^ leftt) & 0x33333333L;
343 leftt ^= work;
344 right ^= (work << 2)
411 u32 ek[32], work[2]; local
454 u32 work[2]; local
468 u32 work[2]; local
    [all...]
  /external/qemu/
d3des.c 144 unsigned long work[2]; local
146 scrunch(inblock, work);
147 desfunc(work, KnL);
148 unscrun(work, outblock);
324 register unsigned long fval, work, right, leftt; local
329 work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
330 right ^= work;
331 leftt ^= (work << 4);
332 work = ((leftt >> 16) ^ right) & 0x0000ffffL;
333 right ^= work;
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
DESEngine.java 407 int work, right, left; local
419 work = ((left >>> 4) ^ right) & 0x0f0f0f0f;
420 right ^= work;
421 left ^= (work << 4);
422 work = ((left >>> 16) ^ right) & 0x0000ffff;
423 right ^= work;
424 left ^= (work << 16);
425 work = ((right >>> 2) ^ left) & 0x33333333;
426 left ^= work;
427 right ^= (work << 2)
    [all...]
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
DES.java 285 int work, right, left; local
297 work = ((left >>> 4) ^ right) & 0x0f0f0f0f;
298 right ^= work;
299 left ^= (work << 4);
300 work = ((left >>> 16) ^ right) & 0x0000ffff;
301 right ^= work;
302 left ^= (work << 16);
303 work = ((right >>> 2) ^ left) & 0x33333333;
304 left ^= work;
305 right ^= (work << 2)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SyncProgressMonitor.java 47 public void advance(int work) {
48 mMonitor.worked(work);
  /external/qemu/distrib/zlib-1.2.3/
inftrees.h 55 unsigned FAR *bits, unsigned short FAR *work));
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 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;
184 base = extra = work; /* dummy value--not used */
219 if ((int)(work[sym]) < end) {
221 this.val = work[sym];
223 else if ((int)(work[sym]) > end)
    [all...]
  /external/zlib/contrib/infback9/
inflate9.h 45 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
inftree9.h 61 unsigned FAR *bits, unsigned short FAR *work));
inftree9.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 inflate_table9(type, lens, codes, table, bits, work)
38 unsigned short FAR *work;
98 table. The sorted table is work[], with that space being provided by
141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
177 base = extra = work; /* dummy value--not used */
213 if ((int)(work[sym]) < end) {
215 this.val = work[sym];
217 else if ((int)(work[sym]) > end)
    [all...]
  /external/zlib/
inftrees.h 62 unsigned FAR *bits, unsigned short FAR *work));

Completed in 910 milliseconds

12 3 4 5 6 7 8 91011>>