HomeSort by relevance Sort by last modified time
    Searched refs:ops (Results 1 - 25 of 213) sorted by null

1 2 3 4 5 6 7 8 9

  /external/chromium/chrome/browser/tab_contents/
web_drag_utils_win.cc 28 WebDragOperationsMask ops = WebDragOperationNone; local
30 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationCopy);
32 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationLink);
34 ops = static_cast<WebDragOperationsMask>(ops | WebDragOperationMove |
36 return ops;
49 DWORD WebDragOpMaskToWinDragOpMask(WebDragOperationsMask ops) {
51 if (ops & WebDragOperationCopy
    [all...]
web_drag_utils_win.h 19 DWORD WebDragOpMaskToWinDragOpMask(WebKit::WebDragOperationsMask ops);
  /external/mesa3d/src/glsl/
ir_to_llvm.cpp 502 llvm::Value* ops[2]; local
504 ops[i] = llvm_value(ir->operands[i]);
526 vec = llvm::UndefValue::get(ops[vecidx]->getType());
528 vec = bld.CreateInsertElement(vec, ops[scaidx], llvm_int(i), "sca2vec");
529 ops[scaidx] = vec;
535 return bld.CreateNot(ops[0]);
541 return bld.CreateNeg(ops[0]);
543 return bld.CreateFNeg(ops[0]);
551 return ops[0];
554 bld.CreateICmpSGE(ops[0], llvm_imm(ops[0]->getType(), 0), "sabs.ge")
    [all...]
  /external/yaffs2/yaffs2/
yaffs_mtdif.c 79 struct mtd_oob_ops ops; local
94 ops.mode = MTD_OOB_AUTO;
95 ops.ooblen = 8; /* temp hack */
97 ops.mode = MTD_OOB_RAW;
98 ops.ooblen = YAFFS_BYTES_PER_SPARE;
100 ops.len = data ? dev->nDataBytesPerChunk : ops.ooblen;
101 ops.datbuf = (u8 *)data;
102 ops.ooboffs = 0;
103 ops.oobbuf = spareAsBytes
143 struct mtd_oob_ops ops; local
    [all...]
yaffs_mtdif2.c 125 struct mtd_oob_ops ops; local
148 ops.mode = MTD_OOB_AUTO;
149 ops.ooblen = mtd->oobsize;
150 ops.len = dev->nDataBytesPerChunk;
151 ops.ooboffs = 0;
152 ops.datbuf = (__u8 *)data;
153 ops.oobbuf = dev->spareBuffer;
154 retval = mtd->write_oob(mtd, addr, &ops);
185 struct mtd_oob_ops ops; local
204 ops.mode = MTD_OOB_AUTO
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
bgscan.c 46 const struct bgscan_ops *ops = NULL; local
63 ops = bgscan_modules[i];
68 if (ops == NULL) {
74 wpa_s->bgscan_priv = ops->init(wpa_s, params, ssid);
77 wpa_s->bgscan = ops;
79 "parameters '%s'", ops->name, params);
  /frameworks/base/services/camera/libcameraservice/
CameraHardwareInterface.h 117 if (mDevice->ops->set_preview_window) {
122 return mDevice->ops->set_preview_window(mDevice,
141 if (mDevice->ops->set_callbacks) {
142 mDevice->ops->set_callbacks(mDevice,
163 if (mDevice->ops->enable_msg_type)
164 mDevice->ops->enable_msg_type(mDevice, msgType);
180 if (mDevice->ops->disable_msg_type)
181 mDevice->ops->disable_msg_type(mDevice, msgType);
192 if (mDevice->ops->msg_type_enabled)
193 return mDevice->ops->msg_type_enabled(mDevice, msgType)
    [all...]
  /bionic/libc/kernel/arch-sh/asm/
timer.h 30 struct sys_timer_ops *ops; member in struct:sys_timer
clock.h 39 struct clk_ops *ops; member in struct:clk
  /external/kernel-headers/original/linux/
cdev.h 8 const struct file_operations *ops; member in struct:cdev
textsearch.h 56 * @ops: operations of chosen algorithm
62 struct ts_ops *ops; member in struct:ts_config
108 unsigned int ret = conf->ops->find(conf, state);
137 return conf->ops->get_pattern(conf);
146 return conf->ops->get_pattern_len(conf);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
LevenshteinDistanceTest.java 46 EditOperation[] ops = distance.getTargetOperations(); local
47 assertEquals(expectedOps.length, ops.length);
48 for (int i = 0; i < ops.length; ++i) {
50 expectedOps[i], ops[i].getType());
52 assertEquals(source[ops[i].getPosition()], target[i]);
54 assertFalse(source[ops[i].getPosition()].equals(target[i]));
  /system/extras/libublock/include/ublock/
ublock.h 43 int ublock_init(struct ublock_ctx **ub, struct ublock_ops *ops, uint64_t size);
54 * Runs a loop waiting for ublock requests and calling the ops callbacks.
62 * Stops ublock_run, if it is running. Should be called from one of the ops
  /external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_drag_win.h 36 WebKit::WebDragOperationsMask ops,
57 WebKit::WebDragOperationsMask ops,
65 WebKit::WebDragOperationsMask ops,
native_tab_contents_view.h 46 WebKit::WebDragOperationsMask ops,
  /system/extras/ext4_utils/
output_file.c 55 struct output_file_ops *ops; member in struct:output_file
168 ret = out->ops->write(out, (u8 *)&chunk_header, sizeof(chunk_header));
224 ret = out->ops->write(out, (u8 *)&chunk_header, sizeof(chunk_header));
228 ret = out->ops->write(out, (u8 *)&fill_val, sizeof(fill_val));
296 ret = out->ops->write(out, (u8 *)&chunk_header, sizeof(chunk_header));
300 ret = out->ops->write(out, data, len);
304 ret = out->ops->write(out, zero_buf, zero_len);
333 out->ops->write(out, (u8 *)&chunk_header, sizeof(chunk_header));
334 out->ops->write(out, (u8 *)&out->crc32, 4);
343 out->ops->close(out)
    [all...]
  /external/qemu/audio/
wavcapture.c 96 struct audio_capture_ops ops; local
119 ops.notify = wav_notify;
120 ops.capture = wav_capture;
121 ops.destroy = wav_destroy;
148 cap = AUD_add_capture (&as, &ops, wav);
159 s->ops = wav_capture_ops;
  /libcore/luni/src/main/java/java/nio/channels/
SelectableChannel.java 150 * but its {@link SelectionKey interest set} is updated to {@code ops} and
162 * @param ops
170 * if {@code ops} is not supported by this channel.
179 public abstract SelectionKey register(Selector sel, int ops, Object att)
  /hardware/msm7k/librpc/
Android.mk 5 LOCAL_SRC_FILES:= xdr.c rpc.c svc.c clnt.c ops.c svc_clnt_common.c
  /external/oprofile/events/i386/atom/
unit_masks 22 0x01 s Floating point computational micro-ops executed
23 0x81 ar Floating point computational micro-ops retired
52 0x00 s SIMD micro-ops executed (excluding stores)
53 0x80 ar SIMD micro-ops retired (excluding stores)
55 0x00 s SIMD saturated arithmetic micro-ops executed
56 0x80 ar SIMD saturated arithmetic micro-ops retired
60 0x02 s SIMD packed shift micro-ops executed
61 0x82 ar SIMD packed shift micro-ops retired
62 0x04 s SIMD pack micro-ops executed
63 0x84 ar SIMD pack micro-ops retire
    [all...]
  /external/icu4c/tools/ctestfw/
uperf.cpp 343 long ops; local
361 ops = testFunction->getOperationsPerIteration();
362 if (ops < 1) {
427 fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops);
429 fprintf(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events);
433 fprintf(stdout,"= %s end %f %i %li\n", name, t, (int)loops, ops);
435 fprintf(stdout,"= %s end %f %i %li %li\n", name, t, (int)loops, ops, events);
441 if (loops == 0 || ops == 0) {
446 name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops));
448 name, min_t, (int)loops, (min_t*1E9)/(loops*ops));
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/event/
EditEventHelperTest.java 267 private void addTestAttendees(ArrayList<ContentProviderOperation> ops,
288 ops.add(b.build());
308 ops.add(b.build());
328 ops.add(b.build());
371 private boolean verifySaveEventNewEvent(ArrayList<ContentProviderOperation> ops) {
390 assertEquals(ops, expectedOps);
418 private boolean verifySaveEventModifyRecurring(ArrayList<ContentProviderOperation> ops) {
436 assertEquals(ops, expectedOps);
468 private boolean verifySaveEventRecurringToNonRecurring(ArrayList<ContentProviderOperation> ops)
492 assertEquals(ops, expectedOps)
1006 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
1082 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
1136 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 87 LevenshteinDistance.EditOperation[] ops = table.getTargetOperations(); local
89 if (ops[i].getType() == LevenshteinDistance.EDIT_UNCHANGED) {
90 result[i] = ops[i].getPosition();
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 270 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
293 eventIdIndex = ops.size();
296 ops.add(b.build());
302 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build());
307 ops.add(ContentProviderOperation.newUpdate(uri).withValues(values).build());
319 eventIdIndex = ops.size();
322 ops.add(b.build());
333 ops.add(ContentProviderOperation.newDelete(uri).build());
337 updatePastEvents(ops, originalModel, model.mOriginalStart);
339 eventIdIndex = ops.size()
535 mService.startBatch(mService.getNextToken(), null, android.provider.CalendarContract.AUTHORITY, ops, local
    [all...]
  /external/clang/test/SemaCXX/
nested-name-spec.cpp 129 Operators ops; local
130 return ops;
134 Operators ops; local
135 return ops;

Completed in 386 milliseconds

1 2 3 4 5 6 7 8 9