/linux-3.3/drivers/media/dvb/dvb-core/ |
D | dvb_ringbuffer.c | 114 size_t split; in dvb_ringbuffer_read_user() local 116 split = (rbuf->pread + len > rbuf->size) ? rbuf->size - rbuf->pread : 0; in dvb_ringbuffer_read_user() 117 if (split > 0) { in dvb_ringbuffer_read_user() 118 if (copy_to_user(buf, rbuf->data+rbuf->pread, split)) in dvb_ringbuffer_read_user() 120 buf += split; in dvb_ringbuffer_read_user() 121 todo -= split; in dvb_ringbuffer_read_user() 135 size_t split; in dvb_ringbuffer_read() local 137 split = (rbuf->pread + len > rbuf->size) ? rbuf->size - rbuf->pread : 0; in dvb_ringbuffer_read() 138 if (split > 0) { in dvb_ringbuffer_read() 139 memcpy(buf, rbuf->data+rbuf->pread, split); in dvb_ringbuffer_read() [all …]
|
/linux-3.3/fs/jfs/ |
D | jfs_xtree.c | 108 uint split; member 121 struct xtsplit * split, struct btstack * btstack); 123 static int xtSplitPage(tid_t tid, struct inode *ip, struct xtsplit * split, 127 struct xtsplit * split, struct metapage ** rmpp); 547 struct xtsplit split; /* split information */ in xtInsert() local 609 split.mp = mp; in xtInsert() 610 split.index = index; in xtInsert() 611 split.flag = xflag; in xtInsert() 612 split.off = xoff; in xtInsert() 613 split.len = xlen; in xtInsert() [all …]
|
D | jfs_dtree.c | 153 struct dtsplit * split, struct btstack * btstack); 155 static int dtSplitPage(tid_t tid, struct inode *ip, struct dtsplit * split, 159 struct dtsplit * split, struct btstack * btstack); 162 struct dtsplit * split, struct metapage ** rmpp); 829 struct dtsplit split; /* split information */ in dtInsert() local 870 split.mp = mp; in dtInsert() 871 split.index = index; in dtInsert() 872 split.nslot = n; in dtInsert() 873 split.key = name; in dtInsert() 874 split.data = &data; in dtInsert() [all …]
|
/linux-3.3/arch/x86/kernel/cpu/ |
D | intel_cacheinfo.c | 134 } split; member 143 } split; member 150 } split; member 278 eax->split.is_self_initializing = 1; in amd_cpuid4() 279 eax->split.type = types[leaf]; in amd_cpuid4() 280 eax->split.level = levels[leaf]; in amd_cpuid4() 281 eax->split.num_threads_sharing = 0; in amd_cpuid4() 282 eax->split.num_cores_on_die = __this_cpu_read(cpu_info.x86_max_cores) - 1; in amd_cpuid4() 286 eax->split.is_fully_associative = 1; in amd_cpuid4() 287 ebx->split.coherency_line_size = line_size - 1; in amd_cpuid4() [all …]
|
/linux-3.3/arch/x86/oprofile/ |
D | op_model_ppro.c | 86 if (!(eax.split.version_id == 0 && in ppro_setup_ctrs() 90 if (counter_width < eax.split.bit_width) in ppro_setup_ctrs() 91 counter_width = eax.split.bit_width; in ppro_setup_ctrs() 215 if (eax.split.version_id == 0 && __this_cpu_read(cpu_info.x86) == 6 && in arch_perfmon_setup_counters() 217 eax.split.version_id = 2; in arch_perfmon_setup_counters() 218 eax.split.num_counters = 2; in arch_perfmon_setup_counters() 219 eax.split.bit_width = 40; in arch_perfmon_setup_counters() 222 num_counters = min((int)eax.split.num_counters, OP_MAX_COUNTER); in arch_perfmon_setup_counters()
|
/linux-3.3/security/apparmor/ |
D | lib.c | 44 char *split = strchr(&name[1], ':'); in aa_split_fqname() local 46 if (split) { in aa_split_fqname() 48 *split = 0; in aa_split_fqname() 49 name = skip_spaces(split + 1); in aa_split_fqname()
|
D | policy.c | 110 char *split; in hname_tail() local 112 for (split = strstr(hname, "//"); split; split = strstr(hname, "//")) in hname_tail() 113 hname = split + 2; in hname_tail() 839 char *split; in __lookup_parent() local 843 for (split = strstr(hname, "//"); split;) { in __lookup_parent() 845 split - hname); in __lookup_parent() 849 hname = split + 2; in __lookup_parent() 850 split = strstr(hname, "//"); in __lookup_parent() 872 char *split; in __lookup_profile() local 874 for (split = strstr(hname, "//"); split;) { in __lookup_profile() [all …]
|
/linux-3.3/fs/btrfs/ |
D | file.c | 436 struct extent_map *split = NULL; in btrfs_drop_extent_cache() local 451 if (!split) in btrfs_drop_extent_cache() 452 split = alloc_extent_map(); in btrfs_drop_extent_cache() 455 BUG_ON(!split || !split2); in btrfs_drop_extent_cache() 483 split->start = em->start; in btrfs_drop_extent_cache() 484 split->len = start - em->start; in btrfs_drop_extent_cache() 485 split->orig_start = em->orig_start; in btrfs_drop_extent_cache() 486 split->block_start = em->block_start; in btrfs_drop_extent_cache() 489 split->block_len = em->block_len; in btrfs_drop_extent_cache() 491 split->block_len = split->len; in btrfs_drop_extent_cache() [all …]
|
D | ctree.c | 2189 struct extent_buffer *split; in split_node() local 2217 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0, in split_node() 2220 if (IS_ERR(split)) in split_node() 2221 return PTR_ERR(split); in split_node() 2225 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header)); in split_node() 2226 btrfs_set_header_level(split, btrfs_header_level(c)); in split_node() 2227 btrfs_set_header_bytenr(split, split->start); in split_node() 2228 btrfs_set_header_generation(split, trans->transid); in split_node() 2229 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV); in split_node() 2230 btrfs_set_header_owner(split, root->root_key.objectid); in split_node() [all …]
|
/linux-3.3/net/sched/ |
D | sch_cbq.c | 107 struct cbq_class *split; /* Ptr to split node */ member 1071 struct cbq_class *split = cl->split; in cbq_sync_defmap() local 1075 if (split == NULL) in cbq_sync_defmap() 1079 if (split->defaults[i] == cl && !(cl->defmap & (1<<i))) in cbq_sync_defmap() 1080 split->defaults[i] = NULL; in cbq_sync_defmap() 1084 int level = split->level; in cbq_sync_defmap() 1086 if (split->defaults[i]) in cbq_sync_defmap() 1095 if (c->split == split && c->level < level && in cbq_sync_defmap() 1097 split->defaults[i] = c; in cbq_sync_defmap() 1107 struct cbq_class *split = NULL; in cbq_change_defmap() local [all …]
|
/linux-3.3/drivers/staging/line6/ |
D | midibuf.c | 52 int line6_midibuf_init(struct MidiBuffer *this, int size, int split) in line6_midibuf_init() argument 60 this->split = split; in line6_midibuf_init() 68 "full=%d command_prev=%02x\n", this->size, this->split, in line6_midibuf_status() 209 if (!this->split) in line6_midibuf_read()
|
D | midibuf.h | 18 int split; member 28 extern int line6_midibuf_init(struct MidiBuffer *mb, int size, int split);
|
/linux-3.3/arch/x86/include/asm/ |
D | perf_event.h | 72 } split; member 85 } split; member 94 } split; member
|
/linux-3.3/arch/tile/ |
D | Kconfig | 205 prompt "Memory split" if EXPERT 208 Select the desired split between kernel and user memory. 216 tighter. Selecting anything other than the default 3G/1G split 224 bool "3.75G/0.25G user/kernel split (no kernel networking)" 226 bool "3.5G/0.5G user/kernel split" 228 bool "3G/1G user/kernel split" 230 bool "2.75G/1.25G user/kernel split (for full 1G low memory)" 232 bool "2.5G/1.5G user/kernel split" 234 bool "2.25G/1.75G user/kernel split" 236 bool "2G/2G user/kernel split" [all …]
|
/linux-3.3/drivers/firewire/ |
D | nosy.c | 173 size_t split = end - buffer->head->data; in packet_buffer_get() local 175 if (copy_to_user(data, buffer->head->data, split)) in packet_buffer_get() 177 if (copy_to_user(data + split, buffer->data, length - split)) in packet_buffer_get() 179 buffer->head = (struct packet *) &buffer->data[length - split]; in packet_buffer_get() 212 size_t split = end - buffer->tail->data; in packet_buffer_put() local 214 memcpy(buffer->tail->data, data, split); in packet_buffer_put() 215 memcpy(buffer->data, data + split, length - split); in packet_buffer_put() 216 buffer->tail = (struct packet *) &buffer->data[length - split]; in packet_buffer_put()
|
/linux-3.3/tools/perf/scripts/python/ |
D | net_dropmonitor.py | 30 loc = int(line.split()[0], 16) 31 name = line.split()[2]
|
/linux-3.3/scripts/ |
D | bloat-o-meter | 19 size, type, name = l[:-1].split() 24 if "." in name[1:]: name = "static." + name.split(".")[0]
|
/linux-3.3/Documentation/trace/ |
D | function-graph-fold.vim | 29 let s = split(getline(v:foldstart), '|', 1) 33 let e = split(getline(v:foldend), '|', 1)
|
/linux-3.3/arch/x86/kvm/ |
D | cpuid.c | 344 eax.split.version_id = min(cap.version, 2); in do_cpuid_ent() 345 eax.split.num_counters = cap.num_counters_gp; in do_cpuid_ent() 346 eax.split.bit_width = cap.bit_width_gp; in do_cpuid_ent() 347 eax.split.mask_length = cap.events_mask_len; in do_cpuid_ent() 349 edx.split.num_counters_fixed = cap.num_counters_fixed; in do_cpuid_ent() 350 edx.split.bit_width_fixed = cap.bit_width_fixed; in do_cpuid_ent() 351 edx.split.reserved = 0; in do_cpuid_ent()
|
/linux-3.3/sound/usb/usx2y/ |
D | usb_stream.c | 562 unsigned split = s->inpacket_head; in stream_start() local 564 while (l > s->inpacket[split].length) { in stream_start() 565 l -= s->inpacket[split].length; in stream_start() 566 if (split == 0) in stream_start() 567 split = s->inpackets - 1; in stream_start() 569 split--; in stream_start() 571 s->next_inpacket_split = split; in stream_start() 573 s->inpacket[split].length - l; in stream_start()
|
/linux-3.3/scripts/rt-tester/ |
D | rt-tester.py | 141 parts = line.split(":") 179 stat = status.split(",")
|
/linux-3.3/drivers/media/video/ivtv/ |
D | ivtv-udma.c | 75 …udma_fill_sg_array (struct ivtv_user_dma *dma, u32 buffer_offset, u32 buffer_offset_2, u32 split) { in ivtv_udma_fill_sg_array() argument 85 split -= sg_dma_len(sg); in ivtv_udma_fill_sg_array() 86 if (split == 0) in ivtv_udma_fill_sg_array()
|
/linux-3.3/drivers/staging/mei/ |
D | TODO | 2 - Cleanup and split the timer function
|
/linux-3.3/arch/x86/tools/ |
D | chkobjdump.awk | 22 split(verstr, ver, ".");
|
/linux-3.3/Documentation/ABI/testing/ |
D | sysfs-driver-hid-roccat-kovaplus | 54 press of a button. A profile is split in settings and buttons. 68 press of a button. A profile is split in settings and buttons. 79 press of a button. A profile is split in settings and buttons. 94 press of a button. A profile is split in settings and buttons.
|