Searched refs:pos (Results 76 - 100 of 3470) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswresample/
H A Ddither_template.c27 int pos = s->dither.ns_pos; local
42 pos = s->dither.ns_pos;
46 d -= ns_coeffs[j ] * ns_errors[pos + j ]
47 +ns_coeffs[j + 1] * ns_errors[pos + j + 1]
48 +ns_coeffs[j + 2] * ns_errors[pos + j + 2]
49 +ns_coeffs[j + 3] * ns_errors[pos + j + 3];
52 d -= ns_coeffs[j] * ns_errors[pos + j];
53 pos = pos ? pos
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dlistbox.h47 void Insert(const wxString& item, unsigned int pos) argument
48 { /* return*/ wxControlWithItems::Insert(item,pos); }
49 void Insert(const wxString& item, unsigned int pos, void *clientData) argument
50 { /* return*/ wxControlWithItems::Insert(item,pos,clientData); }
51 void Insert(const wxString& item, unsigned int pos, wxClientData *clientData) argument
52 { /* return*/ wxControlWithItems::Insert(item,pos,clientData); }
54 void InsertItems(unsigned int nItems, const wxString *items, unsigned int pos);
55 void InsertItems(const wxArrayString& items, unsigned int pos) argument
56 { DoInsertItems(items, pos); }
118 virtual int DoInsert(const wxString& item, unsigned int pos) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/ctxfi/
H A Dctimap.c25 struct list_head *pos, *pre, *head; local
37 list_for_each(pos, head) {
38 pos_ent = list_entry(pos, struct imapper, list);
45 if (pos != head) {
46 pre = pos->prev;
50 __list_add(&entry->list, pos->prev, pos);
53 pos = head->next;
58 pos_ent = list_entry(pos, struct imapper, list);
103 struct list_head *pos; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dhtmltag.cpp35 // this is "pos" value passed to wxHtmlTag's constructor.
71 int pos = 0; local
72 while (pos < lng)
74 if (src[pos] == wxT('<')) // tag found:
79 int stpos = pos++;
84 pos < lng && i < (int)WXSIZEOF(tagBuffer) - 1 &&
85 src[pos] != wxT('>') && !wxIsspace(src[pos]);
86 i++, pos++ )
88 tagBuffer[i] = (wxChar)wxToupper(src[pos]);
219 wxHtmlTag(wxHtmlTag *parent, const wxString& source, int pos, int end_pos, wxHtmlTagsCache *cache, wxHtmlEntitiesParser *entParser) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/univ/
H A Dmenu.h52 void Popup(const wxPoint& pos, const wxSize& size,
79 virtual wxMenuItem* DoInsert(size_t pos, wxMenuItem *item);
151 virtual bool Insert(size_t pos, wxMenu *menu, const wxString& title);
152 virtual wxMenu *Replace(size_t pos, wxMenu *menu, const wxString& title);
153 virtual wxMenu *Remove(size_t pos);
155 virtual void EnableTop(size_t pos, bool enable);
156 virtual bool IsEnabledTop(size_t pos) const;
158 virtual void SetLabelTop(size_t pos, const wxString& label);
159 virtual wxString GetLabelTop(size_t pos) const;
174 void SelectMenu(size_t pos);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/tre-0.8.0/lib/
H A Dtre-match-utils.h22 pos++; \
23 if (len >= 0 && pos >= len) \
30 pos++; \
31 if (len >= 0 && pos >= len) \
38 pos += pos_add_next; \
46 max = len - pos; \
75 pos += pos_add_next; \
90 pos++; \
91 if (len >= 0 && pos >= len) \
98 pos
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iproute2/lib/
H A Ddnet_pton.c42 int pos; local
44 pos = dnet_num(src, &area);
45 if ((pos == 0) || (area > 63) || (*(src + pos) != '.'))
47 pos = dnet_num(src + pos + 1, &node);
48 if ((pos == 0) || (node > 1023))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/fl/
H A Dbarhintspl.h39 void Draw3DBox ( wxDC& dc, const wxPoint& pos, bool pressed );
42 void DrawCloseBox ( wxDC& dc, const wxPoint& pos, bool pressed );
45 void DrawCollapseBox( wxDC& dc, const wxPoint& pos,
49 void DrawGrooves ( wxDC& dc, const wxPoint& pos, int length );
52 void DoDrawHint( wxDC& dc, wxRect& rect, int pos, int boxOfs, int grooveOfs, bool isFixed );
56 int& boxOfs, int& grooveOfs, int& pos );
59 int HitTestHints( cbBarInfo& info, const wxPoint& pos );
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/proc/
H A Ddevices.c26 static void *devinfo_start(struct seq_file *f, loff_t *pos) argument
28 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
29 return pos;
33 static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos) argument
35 (*pos)++;
36 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
38 return pos;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Drle.c35 const uint8_t *pos; local
38 for(pos = start + bpp; count < FFMIN(127, len); pos += bpp, count ++) {
39 if(same != !memcmp(pos-bpp, pos, bpp)) {
43 if(bpp == 1 && count + 1 < FFMIN(127, len) && *pos != *(pos+1))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Drle.c36 const uint8_t *pos; local
39 for(pos = start + bpp; count < FFMIN(127, len); pos += bpp, count ++) {
40 if(same != !memcmp(pos-bpp, pos, bpp)) {
44 if(bpp == 1 && count + 1 < FFMIN(127, len) && *pos != *(pos+1))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/firmware/
H A Discsi_ibft_find.c62 unsigned long pos; local
66 for (pos = IBFT_START; pos < IBFT_END; pos += 16) {
69 if (pos == VGA_MEM)
70 pos += VGA_SIZE;
71 virt = isa_bus_to_virt(pos);
74 (unsigned long *)isa_bus_to_virt(pos + 4);
78 if (pos + len <= (IBFT_END-1)) {
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/
H A Dbuiltin-buildid-cache.c78 struct str_node *pos; local
86 strlist__for_each(pos, list)
87 if (build_id_cache__add_file(pos->s, debugdir)) {
90 pos->s);
94 pos->s, strerror(errno));
104 strlist__for_each(pos, list)
105 if (build_id_cache__remove_file(pos->s, debugdir)) {
108 pos->s);
112 pos->s, strerror(errno));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/tre-0.8.0/tests/
H A Dtest-str-source.c24 size_t pos; member in struct:__anon2748
34 unsigned char ch = ctx->str[ctx->pos];
36 printf("str[%lu] = %d\n", (unsigned long)ctx->pos, ch);
39 ctx->pos++;
47 str_handler_rewind(size_t pos, void *context) argument
51 printf("rewind to %lu\n", (unsigned long)pos);
52 ctx->pos = pos;
87 ctx->pos = 0;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/cms/
H A Dcms_io.c64 ASN1_OCTET_STRING **pos; local
65 pos = CMS_get0_content(cms);
66 if (!pos)
68 if (!*pos)
69 *pos = ASN1_OCTET_STRING_new();
70 if (*pos) {
71 (*pos)->flags |= ASN1_STRING_FLAG_NDEF;
72 (*pos)->flags &= ~ASN1_STRING_FLAG_CONT;
73 *boundary = &(*pos)->data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/cms/
H A Dcms_io.c64 ASN1_OCTET_STRING **pos; local
65 pos = CMS_get0_content(cms);
66 if (!pos)
68 if (!*pos)
69 *pos = ASN1_OCTET_STRING_new();
70 if (*pos) {
71 (*pos)->flags |= ASN1_STRING_FLAG_NDEF;
72 (*pos)->flags &= ~ASN1_STRING_FLAG_CONT;
73 *boundary = &(*pos)->data;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/mac/classic/
H A Dstatlmac.cpp46 const wxPoint &pos,
51 if ( !wxStaticLineBase::Create(parent, id, pos, size,
58 MacPreControlCreate( parent , id , wxEmptyString , pos , size ,style, wxDefaultValidator , name , &bounds , title ) ;
44 Create( wxWindow *parent, wxWindowID id, const wxPoint &pos, const wxSize &size, long style, const wxString &name) argument
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/romfs/
H A Dinternal.h42 extern int romfs_dev_read(struct super_block *sb, unsigned long pos,
45 unsigned long pos, size_t maxlen);
46 extern int romfs_dev_strcmp(struct super_block *sb, unsigned long pos,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/smbd/
H A Dfileio.c33 static BOOL read_from_write_cache(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n) argument
34 /*static BOOL read_from_write_cache(files_struct *fsp,char *data,SMB_BIG_UINT pos,size_t n)*/
44 if( n > wcp->data_size || pos < wcp->offset || pos + n > wcp->offset + wcp->data_size) {
48 memcpy(data, wcp->data + (pos - wcp->offset), n);
62 ssize_t read_file(files_struct *fsp,char *data,SMB_OFF_T pos,size_t n) argument
63 /*ssize_t read_file(files_struct *fsp,char *data,SMB_BIG_UINT pos,size_t n)*/
78 if(read_from_write_cache(fsp, data, pos, n)) {
79 fsp->fh->pos = pos
133 real_write_file(files_struct *fsp,const char *data, SMB_OFF_T pos, size_t n) argument
213 write_file(files_struct *fsp, const char *data, SMB_OFF_T pos, size_t n) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DDocument.h29 Range(Position pos=0) : argument
30 start(pos), end(pos) {
41 bool Contains(Position pos) const {
43 return (pos >= start && pos <= end);
45 return (pos <= start && pos >= end);
49 // Is the character after pos within the range?
50 bool ContainsCharacter(Position pos) cons
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/pci/hotplug/
H A Dpcihp_slot.c97 int pos; local
105 pos = pci_pcie_cap(dev);
106 if (!pos)
116 pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &reg16);
118 pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, reg16);
122 pci_read_config_word(dev, pos + PCI_EXP_LNKCTL, &reg16);
125 pci_write_config_word(dev, pos + PCI_EXP_LNKCTL, reg16);
129 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
130 if (!pos)
134 pci_read_config_dword(dev, pos
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/scripts/
H A Dcleanpatch21 my $pos = 0;
28 my $npos = ($pos+$nsp+8) & ~7;
29 my $ntab = ($npos >> 3) - ($pos >> 3);
31 $pos = $npos;
35 $pos += $nsp;
38 $pos = 0;
43 $pos += $nsp;
46 $pos++;
59 my $pos = 0;
65 $pos
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/ncpfs/
H A Dfile.c107 off_t pos; local
119 pos = *ppos;
126 if (pos > inode->i_sb->s_maxbytes)
128 if (pos + count > inode->i_sb->s_maxbytes) {
129 count = inode->i_sb->s_maxbytes - pos;
150 bufsize - (pos % bufsize),
155 pos, to_read, buf, &read_this_time,
161 pos += read_this_time;
171 *ppos = pos;
188 off_t pos; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dvsrc_life.c302 int pos[8][2], n, alive, cell; local
304 pos[NW][0] = (i-1) < 0 ? life->h-1 : i-1; pos[NW][1] = (j-1) < 0 ? life->w-1 : j-1;
305 pos[N ][0] = (i-1) < 0 ? life->h-1 : i-1; pos[N ][1] = j ;
306 pos[NE][0] = (i-1) < 0 ? life->h-1 : i-1; pos[NE][1] = (j+1) == life->w ? 0 : j+1;
307 pos[W ][0] = i ; pos[W ][1] = (j-1) < 0 ? life->w-1 : j-1;
308 pos[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/tests/streams/
H A Dlargefile.cpp108 wxFileOffset pos; local
115 pos = 0x7fffffff - size;
116 CPPUNIT_ASSERT(out->SeekO(pos) == pos);
118 pos += size;
123 pos += size;
124 CPPUNIT_ASSERT(out->TellO() == pos);
127 pos = 0xffffffff - size;
128 CPPUNIT_ASSERT(out->SeekO(pos) == pos);
[all...]

Completed in 155 milliseconds

1234567891011>>