Searched refs:cell (Results 1 - 25 of 163) sorted by relevance

1234567

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/afs/
H A Dcell.c1 /* AFS cell and server record management
31 * allocate a cell record and fill in its name, VL server address list and
37 struct afs_cell *cell; local
46 BUG_ON(!name); /* TODO: want to look up "this cell" in the cache */
53 /* allocate and initialise a cell record */
54 cell = kzalloc(sizeof(struct afs_cell) + namelen + 1, GFP_KERNEL);
55 if (!cell) {
60 memcpy(cell->name, name, namelen);
61 cell->name[namelen] = 0;
63 atomic_set(&cell
153 struct afs_cell *cell; local
271 struct afs_cell *cell; local
326 afs_put_cell(struct afs_cell *cell) argument
360 afs_cell_destroy(struct afs_cell *cell) argument
410 struct afs_cell *cell; local
[all...]
H A Dproc.c210 * move to next cell in cells list
226 * display a header line followed by a load of cell lines
230 struct afs_cell *cell = list_entry(v, struct afs_cell, proc_link); local
238 /* display one cell per line on subsequent lines */
240 atomic_read(&cell->usage), cell->name);
295 struct afs_cell *cell; local
297 cell = afs_cell_create(name, strlen(name), args, false);
298 if (IS_ERR(cell)) {
299 ret = PTR_ERR(cell);
388 afs_proc_cell_setup(struct afs_cell *cell) argument
430 afs_proc_cell_remove(struct afs_cell *cell) argument
447 struct afs_cell *cell; local
479 struct afs_cell *cell = m->private; local
494 struct afs_cell *cell = p->private; local
505 struct afs_cell *cell = p->private; local
525 struct afs_cell *cell = m->private; local
553 struct afs_cell *cell; local
586 struct afs_cell *cell = m->private; local
611 struct afs_cell *cell = p->private; local
629 struct afs_cell *cell = p->private; local
658 struct afs_cell *cell; local
691 struct afs_cell *cell = m->private; variable in typeref:struct:afs_cell
706 struct afs_cell *cell = p->private; local
718 struct afs_cell *cell = p->private; variable in typeref:struct:afs_cell
728 struct afs_cell *cell = m->private; local
[all...]
H A Dserver.c69 static struct afs_server *afs_alloc_server(struct afs_cell *cell, argument
79 server->cell = cell;
102 * get an FS-server record for a cell
104 struct afs_server *afs_lookup_server(struct afs_cell *cell, argument
109 _enter("%p,%pI4", cell, &addr->s_addr);
112 read_lock(&cell->servers_lock);
114 list_for_each_entry(server, &cell->servers, link) {
118 read_unlock(&cell->servers_lock);
120 candidate = afs_alloc_server(cell, add
[all...]
H A Dvlocation.c34 * iterate through the VL servers in a cell until one of them admits knowing
41 struct afs_cell *cell = vl->cell; local
45 _enter("%s,%s", cell->name, vl->vldb.name);
47 down_write(&vl->cell->vl_sem);
49 for (count = cell->vl_naddrs; count > 0; count--) {
50 addr = cell->vl_addrs[cell->vl_curr_svix];
52 _debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr);
79 cell
99 struct afs_cell *cell = vl->cell; local
170 afs_vlocation_alloc(struct afs_cell *cell, const char *name, size_t namesz) argument
373 afs_vlocation_lookup(struct afs_cell *cell, struct key *key, const char *name, size_t namesz) argument
[all...]
H A Dsuper.c71 { afs_opt_cell, "cell=%s" },
141 struct afs_cell *cell; local
157 cell = afs_cell_lookup(args[0].from,
160 if (IS_ERR(cell))
161 return PTR_ERR(cell);
162 afs_put_cell(params->cell);
163 params->cell = cell;
190 * parse a device name to get cell name, volume name, volume type and R/W
193 * "%[cell
204 struct afs_cell *cell; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/core/seq/
H A Dseq_prioq.c147 /* enqueue cell to prioq */
149 struct snd_seq_event_cell * cell)
156 if (snd_BUG_ON(!f || !cell))
160 prior = (cell->event.flags & SNDRV_SEQ_PRIORITY_MASK);
168 if (compare_timestamp(&cell->event, &f->tail->event)) {
169 /* add new cell to tail of the fifo */
170 f->tail->next = cell;
171 f->tail = cell;
172 cell->next = NULL;
178 /* traverse list of elements to find the place where the new cell i
148 snd_seq_prioq_cell_in(struct snd_seq_prioq * f, struct snd_seq_event_cell * cell) argument
222 struct snd_seq_event_cell *cell; local
269 prioq_match(struct snd_seq_event_cell *cell, int client, int timestamp) argument
294 register struct snd_seq_event_cell *cell, *next; local
396 struct snd_seq_event_cell *cell, *next; local
[all...]
H A Dseq_fifo.c97 struct snd_seq_event_cell *cell; local
106 while ((cell = fifo_cell_out(f)) != NULL) {
107 snd_seq_cell_free(cell);
117 struct snd_seq_event_cell *cell; local
125 err = snd_seq_event_dup(f->pool, event, &cell, 1, NULL); /* always non-blocking */
136 f->tail->next = cell;
137 f->tail = cell;
139 f->head = cell;
153 /* dequeue cell from fifo */
156 struct snd_seq_event_cell *cell; local
176 struct snd_seq_event_cell *cell; local
210 snd_seq_fifo_cell_putback(struct snd_seq_fifo *f, struct snd_seq_event_cell *cell) argument
238 struct snd_seq_event_cell *cell, *next, *oldhead; local
[all...]
H A Dseq_memory.c61 * ext.data.ptr = the additiona cell head
62 * -> cell.next -> cell.next -> ..
82 struct snd_seq_event_cell *cell; local
107 cell = (struct snd_seq_event_cell *)event->data.ext.ptr;
108 for (; len > 0 && cell; cell = cell->next) {
112 err = func(private_data, &cell->event, size);
174 * release this cell, fre
177 free_cell(struct snd_seq_pool *pool, struct snd_seq_event_cell *cell) argument
185 snd_seq_cell_free(struct snd_seq_event_cell * cell) argument
225 struct snd_seq_event_cell *cell; local
294 struct snd_seq_event_cell *cell; local
379 int cell; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mfd/
H A Dmfd-core.c21 const struct mfd_cell *cell,
30 pdev = platform_device_alloc(cell->name, id + cell->id);
34 res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL);
39 platform_set_drvdata(pdev, cell->driver_data);
42 cell->platform_data, cell->data_size);
46 for (r = 0; r < cell->num_resources; r++) {
47 res[r].name = cell->resources[r].name;
48 res[r].flags = cell
20 mfd_add_device(struct device *parent, int id, const struct mfd_cell *cell, struct resource *mem_base, int irq_base) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/html/
H A Dhtmlcell.cpp127 bool CallOnMouseClick(wxHtmlCell *cell) argument
131 cell->OnMouseClick
308 bool wxHtmlCell::IsBefore(wxHtmlCell *cell) const
311 const wxHtmlCell *c2 = cell;
313 unsigned d2 = cell->GetDepth();
322 if ( cell == this )
363 void wxHtmlWordCell::SetPreviousWord(wxHtmlWordCell *cell) argument
365 if ( cell && m_Parent == cell->m_Parent &&
366 !wxIsspace(cell
682 wxHtmlCell *cell = m_Cells; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/otus/80211core/
H A Dqueue.h34 struct zsQueueCell cell[1]; member in struct:zsQueue
H A Dqueue.c64 q->cell[q->tail].buf = buf;
65 q->cell[q->tail].tick = tick;
96 buf = q->cell[q->head].buf;
140 buf = q->cell[index].buf;
149 q->cell[index].buf = q->cell[next].buf;
150 q->cell[index].tick = q->cell[next].tick;
153 q->cell[next].buf, addr) == 0))
204 buftick = q->cell[
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavcodec/
H A Droqvideo.c41 void ff_apply_vector_2x2(RoqContext *ri, int x, int y, roq_cell *cell) argument
50 bptr[0 ] = cell->y[0];
51 bptr[1 ] = cell->y[1];
52 bptr[stride ] = cell->y[2];
53 bptr[stride+1] = cell->y[3];
62 bptr[stride+1] = cell->u;
68 bptr[stride+1] = cell->v;
71 void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell) argument
80 bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = cell->y[0];
81 bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] = cell
[all...]
H A Dindeo3.c73 int16_t xpos; ///< cell coordinates in 4x4 blocks
75 int16_t width; ///< cell width in 4x4 blocks
76 int16_t height; ///< cell height in 4x4 blocks
218 * Copy pixels of the cell(x + mv_x, y + mv_y) from the previous frame into
219 * the cell(x, y) in the current frame.
223 * @param cell pointer to the cell descriptor
225 static int copy_cell(Indeo3DecodeContext *ctx, Plane *plane, Cell *cell) argument
231 offset_dst = (cell->ypos << 2) * plane->pitch + (cell
418 decode_cell_data(Cell *cell, uint8_t *block, uint8_t *ref_block, int pitch, int h_zoom, int v_zoom, int mode, const vqEntry *delta[2], int swap_quads[2], const uint8_t **data_ptr, const uint8_t *last_ptr) argument
574 decode_cell(Indeo3DecodeContext *ctx, AVCodecContext *avctx, Plane *plane, Cell *cell, const uint8_t *data_ptr, const uint8_t *last_ptr) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavcodec/
H A Droqvideo.c41 void ff_apply_vector_2x2(RoqContext *ri, int x, int y, roq_cell *cell) argument
50 bptr[0 ] = cell->y[0];
51 bptr[1 ] = cell->y[1];
52 bptr[stride ] = cell->y[2];
53 bptr[stride+1] = cell->y[3];
62 bptr[stride+1] = cell->u;
68 bptr[stride+1] = cell->v;
71 void ff_apply_vector_4x4(RoqContext *ri, int x, int y, roq_cell *cell) argument
80 bptr[ 0] = bptr[ 1] = bptr[stride ] = bptr[stride +1] = cell->y[0];
81 bptr[ 2] = bptr[ 3] = bptr[stride +2] = bptr[stride +3] = cell
[all...]
H A Dindeo3.c75 int16_t xpos; ///< cell coordinates in 4x4 blocks
77 int16_t width; ///< cell width in 4x4 blocks
78 int16_t height; ///< cell height in 4x4 blocks
225 * Copy pixels of the cell(x + mv_x, y + mv_y) from the previous frame into
226 * the cell(x, y) in the current frame.
230 * @param cell pointer to the cell descriptor
232 static int copy_cell(Indeo3DecodeContext *ctx, Plane *plane, Cell *cell) argument
238 offset_dst = (cell->ypos << 2) * plane->pitch + (cell
426 decode_cell_data(Indeo3DecodeContext *ctx, Cell *cell, uint8_t *block, uint8_t *ref_block, int pitch, int h_zoom, int v_zoom, int mode, const vqEntry *delta[2], int swap_quads[2], const uint8_t **data_ptr, const uint8_t *last_ptr) argument
583 decode_cell(Indeo3DecodeContext *ctx, AVCodecContext *avctx, Plane *plane, Cell *cell, const uint8_t *data_ptr, const uint8_t *last_ptr) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/generic/
H A Dhtmllbox.cpp102 // return the cached cell for this index or NULL if none
118 void Store(size_t item, wxHtmlCell *cell) argument
121 m_cells[m_next] = cell;
145 // the index of the LRU (oldest) cell
304 wxHtmlContainerCell *cell = (wxHtmlContainerCell *)m_htmlParser-> local
306 wxCHECK_RET( cell, _T("wxHtmlParser::Parse() returned NULL?") );
308 // set the cell's ID to item's index so that CellCoordsToPhysical()
310 cell->SetId(wxString::Format(_T("%lu"), (unsigned long)n));
312 cell->Layout(GetClientSize().x - 2*GetMargins().x);
314 m_cache->Store(n, cell);
363 wxHtmlCell *cell = m_cache->Get(n); local
391 wxHtmlCell *cell = m_cache->Get(n); local
426 HTMLCoordsToWindow(wxHtmlCell *cell, const wxPoint& pos) const argument
523 wxHtmlCell *cell; local
541 wxHtmlCell *cell; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/oprofile/
H A DMakefile17 cell/spu_profiler.o cell/vma_map.o \
18 cell/spu_task_sync.o
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/lib/
H A Dafs.c42 static char *afs_encode_token(const char *cell, const DATA_BLOB ticket, argument
61 asprintf(&result, "%s\n%u\n%s\n%u\n%u\n%u\n%s\n", cell,
76 static BOOL afs_createtoken(const char *username, const char *cell, argument
90 if (!secrets_fetch_afs_key(cell, &key)) {
112 strncpy(p, cell, sizeof(clear_ticket)-PTR_DIFF(p,clear_ticket)-1);
181 char *afs_createtoken_str(const char *username, const char *cell) argument
187 if (!afs_createtoken(username, cell, &ticket, &ct))
190 result = afs_encode_token(cell, ticket, &ct);
218 char *cell; local
239 cell
277 afs_createtoken_str(const char *username, const char *cell) argument
[all...]
H A Dafs_settoken.c52 static BOOL afs_decode_token(const char *string, char **cell, argument
67 *cell = SMB_STRDUP(t);
155 static BOOL afs_settoken(const char *cell, argument
185 tmp = strlen(cell);
191 strncpy(p, cell, tmp);
216 char *cell; local
218 if (!afs_decode_token(token_string, &cell, &ticket, &ct))
224 result = afs_settoken(cell, &ct, ticket);
226 SAFE_FREE(cell);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/samples/gizmos/dynsash/
H A Ddynsash.cpp98 wxHtmlContainerCell *cell = GetInternalRepresentation(); local
101 if (cell)
103 cell->Layout(size.GetWidth());
104 return wxSize(cell->GetWidth(), cell->GetHeight());
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/wget-1.12/src/
H A Dhash.c116 The above means that all the cells (each cell containing a key and
118 of each cell is determined by the hash value of its key and the
121 second is stored in the first unoccupied cell that follows it.
131 Collisions complicate deletion because simply clearing a cell
134 "tombstone" marker instead of clearing the cell, and another is to
148 struct cell { struct
160 struct cell *cells; /* contiguous array of cells. */
171 a cell is empty. It is unaligned and therefore illegal as a
187 /* Whether the cell C is occupied (non-empty). */
190 /* Clear the cell
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/sparc/kernel/
H A Dof_device_common.h4 static inline u64 of_read_addr(const u32 *cell, int size) argument
8 r = (r << 32) | *(cell++);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/oprofile/cell/
H A Dpr_util.h19 #include <asm/cell-pmu.h>
20 #include <asm/cell-regs.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/generic/
H A Ddataview.h38 virtual bool Render( wxRect cell, wxDC *dc, int state ) = 0;
41 virtual bool Activate( wxRect WXUNUSED(cell),
48 wxRect WXUNUSED(cell),
54 wxRect WXUNUSED(cell),
60 wxRect WXUNUSED(cell),
103 bool Render( wxRect cell, wxDC *dc, int state );
126 bool Render( wxRect cell, wxDC *dc, int state );
150 bool Render( wxRect cell, wxDC *dc, int state );
151 bool Activate( wxRect cell, wxDataViewListModel *model, unsigned int col, unsigned int row );
175 virtual bool Render( wxRect cell, wxD
[all...]

Completed in 326 milliseconds

1234567