Searched refs:rest (Results 51 - 75 of 78) sorted by relevance

1234

/linux-master/drivers/staging/media/av7110/
H A Dav7110_av.c635 int check, rest; local
716 rest = l % (TS_SIZE - 4);
717 l -= rest;
719 memcpy(p->pes, buf + c + l, rest);
720 p->pos = rest;
/linux-master/kernel/
H A Dsys.c1294 const char *rest = UTS_RELEASE; local
1300 while (*rest) {
1301 if (*rest == '.' && ++ndots >= 3)
1303 if (!isdigit(*rest) && *rest != '.')
1305 rest++;
1309 copy = scnprintf(buf, copy, "2.6.%u%s", v, rest);
1753 * make sense to do this. It will make moving the rest of the information
/linux-master/drivers/scsi/
H A Dncr53c8xx.c1527 ** the rest of the data.
6063 ** to transfer the rest of the current block.
6071 u32 rest; local
6088 rest = dbc & 0xffffff;
6101 delta=(((ctest5 << 8) | (INB (nc_dfifo) & 0xff)) - rest) & 0x3ff;
6103 delta=(INB (nc_dfifo) - rest) & 0x7f;
6107 ** the target -> add the amount to the rest
6112 rest += delta;
6114 if (ss0 & OLF) rest++;
6115 if (ss0 & ORF) rest
[all...]
/linux-master/sound/pci/
H A Dvia82xx.c412 unsigned int i, idx, ofs, rest; local
438 rest = fragsize;
454 r = snd_pcm_sgbuf_get_chunk_size(substream, ofs, rest);
455 rest -= r;
456 if (! rest) {
465 "tbl %d: at %d size %d (rest %d)\n",
466 idx, ofs, r, rest);
473 } while (rest > 0);
763 * calculate the linear position at the given sg-buffer index and the rest count
/linux-master/fs/nilfs2/
H A Dsegment.c434 * nilfs_segctor_zeropad_segsum - zero pad the rest of the segment summary area
1040 size_t n, rest = nilfs_segctor_buffer_rest(sci); local
1043 inode, &data_buffers, rest + 1, 0, LLONG_MAX);
1044 if (n > rest) {
1088 size_t n, rest = nilfs_segctor_buffer_rest(sci); local
1091 n = nilfs_lookup_dirty_data_buffers(inode, &data_buffers, rest + 1,
1099 BUG_ON(n > rest);
1100 /* always receive -E2BIG or true error if n > rest */
/linux-master/arch/arc/include/asm/
H A Dentry-arcv2.h84 ; Now manually save rest of reg file
/linux-master/drivers/media/usb/dvb-usb/
H A Ddib0700_devices.c1629 u32 freq_adc, ratio, rest, max = 0; local
1635 rest = ((fe->dtv_property_cache.frequency / 1000) * (1 << 8) / 1000) - ratio * freq_adc;
1637 if (rest > freq_adc / 2)
1638 rest = freq_adc - rest;
1639 deb_info("PLL ratio=%i rest=%i\n", pll_ratio, rest);
1640 if ((rest > max) && (rest > 717)) {
1642 max = rest;
[all...]
/linux-master/scripts/
H A Dget_abi.pl59 pod2usage(2) if ($cmd ne "search" && $cmd ne "rest" && $cmd ne "validate" && $cmd ne "undefined");
966 if ($cmd eq "rest") {
1000 B<rest> - output the ABI in ReST markup language
1086 $ scripts/get_abi.pl rest --dir Documentation/ABI/obsolete
H A Dcheckpatch.pl3958 my $rest = $2;
3960 my $pos = pos_last_openparen($rest);
5740 my $rest = rtrim($4);
5741 if ($rest =~ /;$/) {
5743 fix_insert_line($fixlinenr + 1, "$indent\t$rest");
5911 my ($off, $dstat, $dcond, $rest);
5970 #print "REST<$rest> dstat<$dstat> ctx<$ctx>\n";
6084 my ($off, $dstat, $dcond, $rest);
/linux-master/drivers/block/
H A Dps3vram.c614 char *rest; local
648 ddr_size = ALIGN(memparse(size, &rest), 1024*1024);
/linux-master/drivers/s390/crypto/
H A Dvfio_ap_ops.c1688 char *newbuf, *rest; local
1695 rest = newbuf;
1702 if (parse_bitmap(&rest, m_new.apm, AP_DEVICES) ||
1703 parse_bitmap(&rest, m_new.aqm, AP_DOMAINS) ||
1704 parse_bitmap(&rest, m_new.adm, AP_DOMAINS)) {
/linux-master/arch/s390/boot/
H A Dhead.S47 bras %r14,.Lloader # load rest of ipl image
/linux-master/arch/x86/boot/
H A Dheader.S449 # 32764 bytes and then all of the rest of the bytes representing the very
/linux-master/tools/testing/selftests/net/
H A Dxfrm_policy.sh185 ip netns exec $ns iptables-save -c |grep policy | ( read c rest
/linux-master/mm/
H A Dmempolicy.c3198 char *rest = nodelist; local
3199 while (isdigit(*rest))
3200 rest++;
3201 if (*rest)
/linux-master/fs/ext4/
H A Dxattr.c724 size_t rest = buffer_size; local
735 if (size > rest)
743 rest -= size;
746 return buffer_size - rest; /* total size */
1240 * case the rest of the work spills over to subsequent
1773 size_t rest = (void *)last - (void *)here + sizeof(__u32); local
1775 memmove((void *)here + size, here, rest);
H A Dresize.c1149 int rest = sb->s_blocksize - size; local
1200 if (rest)
1201 memset(bh->b_data + size, 0, rest);
/linux-master/sound/usb/
H A Dmixer.c2127 size_t rest; /* remaining bytes after bmMixerControls */ local
2132 rest = 1; /* iMixer */
2135 rest = 2; /* bmControls + iMixer */
2138 rest = 6; /* bmControls + wMixerDescrStr */
2143 return c + (num_ins * num_outs + 7) / 8 + rest > hdr + hdr[0];
/linux-master/drivers/net/ethernet/
H A Djme.c1356 int rest; local
1358 rest = jme_process_receive(jme, JME_NAPI_WEIGHT_VAL(budget));
1367 if (rest) {
1372 JME_NAPI_WEIGHT_SET(budget, rest);
1373 return JME_NAPI_WEIGHT_VAL(budget) - rest;
/linux-master/drivers/net/usb/
H A Dhso.c912 /* Copy the rest of the bytes that are left in the
969 u32 rest = urb->actual_length % le16_to_cpu(max_packet_size); local
971 if (((rest == 5) || (rest == 6)) &&
/linux-master/drivers/gpu/drm/amd/amdkfd/
H A Dcwsr_trap_handler_gfx10.asm619 //save the rest 12 SGPR
767 s_mov_b32 s_save_mem_offset, (0+128*4) // for the rest VGPRs
771 s_mov_b32 s_save_mem_offset, (0+256*4) // for the rest VGPRs
/linux-master/arch/powerpc/crypto/
H A Daes-gcm-p10.S1030 # loop the rest of the stream if any
/linux-master/tools/testing/selftests/tc-testing/
H A Dtdc.py352 return rest
/linux-master/tools/perf/util/
H A Dsession.c1782 size_t hdr_sz, rest; local
1813 rest = event->header.size - hdr_sz;
1815 if (readn(fd, buf, rest) != (ssize_t)rest)
/linux-master/arch/m68k/fpsp040/
H A Dbindec.S394 bgts no_inf |if false, skip rest
544 beqs A11_st |if clear, skip rest
872 beqs A16_st |if zero, skip rest

Completed in 318 milliseconds

1234