Searched refs:vtbl (Results 1 - 15 of 15) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavdevice/
H A Ddshow_enummediatypes.c85 IEnumMediaTypesVtbl *vtbl = this->vtbl; local
86 SETVTBL(vtbl, libAVEnumMediaTypes, QueryInterface);
87 SETVTBL(vtbl, libAVEnumMediaTypes, AddRef);
88 SETVTBL(vtbl, libAVEnumMediaTypes, Release);
89 SETVTBL(vtbl, libAVEnumMediaTypes, Next);
90 SETVTBL(vtbl, libAVEnumMediaTypes, Skip);
91 SETVTBL(vtbl, libAVEnumMediaTypes, Reset);
92 SETVTBL(vtbl, libAVEnumMediaTypes, Clone);
H A Ddshow_enumpins.c82 IEnumPinsVtbl *vtbl = this->vtbl; local
83 SETVTBL(vtbl, libAVEnumPins, QueryInterface);
84 SETVTBL(vtbl, libAVEnumPins, AddRef);
85 SETVTBL(vtbl, libAVEnumPins, Release);
86 SETVTBL(vtbl, libAVEnumPins, Next);
87 SETVTBL(vtbl, libAVEnumPins, Skip);
88 SETVTBL(vtbl, libAVEnumPins, Reset);
89 SETVTBL(vtbl, libAVEnumPins, Clone);
H A Ddshow_filter.c169 IBaseFilterVtbl *vtbl = this->vtbl; local
170 SETVTBL(vtbl, libAVFilter, QueryInterface);
171 SETVTBL(vtbl, libAVFilter, AddRef);
172 SETVTBL(vtbl, libAVFilter, Release);
173 SETVTBL(vtbl, libAVFilter, GetClassID);
174 SETVTBL(vtbl, libAVFilter, Stop);
175 SETVTBL(vtbl, libAVFilter, Pause);
176 SETVTBL(vtbl, libAVFilter, Run);
177 SETVTBL(vtbl, libAVFilte
[all...]
H A Ddshow_pin.c207 IPinVtbl *vtbl = this->vtbl; local
229 SETVTBL(vtbl, libAVPin, QueryInterface);
230 SETVTBL(vtbl, libAVPin, AddRef);
231 SETVTBL(vtbl, libAVPin, Release);
232 SETVTBL(vtbl, libAVPin, Connect);
233 SETVTBL(vtbl, libAVPin, ReceiveConnection);
234 SETVTBL(vtbl, libAVPin, Disconnect);
235 SETVTBL(vtbl, libAVPin, ConnectedTo);
236 SETVTBL(vtbl, libAVPi
[all...]
H A Ddshow_capture.h114 if (this->vtbl) \
115 CoTaskMemFree(this->vtbl); \
123 void *vtbl = CoTaskMemAlloc(sizeof(*this->vtbl)); \
125 if (!this || !vtbl) \
128 ZeroMemory(vtbl, sizeof(*this->vtbl)); \
130 this->vtbl = vtbl; \
141 #define SETVTBL(vtbl, clas
157 IPinVtbl *vtbl; member in struct:libAVPin
203 IEnumPinsVtbl *vtbl; member in struct:libAVEnumPins
225 IEnumPinsVtbl *vtbl; member in struct:libAVEnumMediaTypes
246 IBaseFilterVtbl *vtbl; member in struct:libAVFilter
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mtd/ubi/
H A Dvtbl.c102 memcpy(&ubi->vtbl[idx], vtbl_rec, sizeof(struct ubi_vtbl_record));
108 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
137 struct ubi_vtbl_record *vtbl_rec = &ubi->vtbl[vol->vol_id];
160 err = ubi_eba_write_leb(ubi, layout_vol, i, ubi->vtbl, 0,
172 * @vtbl: volume table
174 * This function returns zero if @vtbl is all right, %1 if CRC is incorrect,
178 const struct ubi_vtbl_record *vtbl)
188 reserved_pebs = be32_to_cpu(vtbl[i].reserved_pebs);
189 alignment = be32_to_cpu(vtbl[i].alignment);
190 data_pad = be32_to_cpu(vtbl[
177 vtbl_check(const struct ubi_device *ubi, const struct ubi_vtbl_record *vtbl) argument
305 create_vtbl(struct ubi_device *ubi, struct ubi_scan_info *si, int copy, void *vtbl) argument
517 struct ubi_vtbl_record *vtbl; local
550 init_volumes(struct ubi_device *ubi, const struct ubi_scan_info *si, const struct ubi_vtbl_record *vtbl) argument
[all...]
H A DMakefile3 ubi-y += vtbl.o vmt.o upd.o build.o cdev.o kapi.o eba.o io.o wl.o scan.o
H A Dupd.c62 ubi_assert(ubi->vtbl[vol->vol_id].upd_marker);
67 memcpy(&vtbl_rec, &ubi->vtbl[vol->vol_id],
96 memcpy(&vtbl_rec, &ubi->vtbl[vol->vol_id],
H A Dvmt.c544 memcpy(&vtbl_rec, &ubi->vtbl[vol_id], sizeof(struct ubi_vtbl_record));
726 reserved_pebs = be32_to_cpu(ubi->vtbl[vol_id].reserved_pebs);
833 alignment = be32_to_cpu(ubi->vtbl[vol_id].alignment);
834 data_pad = be32_to_cpu(ubi->vtbl[vol_id].data_pad);
835 name_len = be16_to_cpu(ubi->vtbl[vol_id].name_len);
836 upd_marker = ubi->vtbl[vol_id].upd_marker;
837 name = &ubi->vtbl[vol_id].name[0];
838 if (ubi->vtbl[vol_id].vol_type == UBI_VID_DYNAMIC)
857 ubi_dbg_dump_vtbl_record(&ubi->vtbl[vol_id], vol_id);
H A Dbuild.c617 vfree(ubi->vtbl);
809 ubi->vtbl[vol_id].flags &= ~UBI_VTBL_AUTORESIZE_FLG;
818 memcpy(&vtbl_rec, &ubi->vtbl[vol_id],
1006 vfree(ubi->vtbl);
1079 vfree(ubi->vtbl);
H A Dubi.h317 * @vtbl: in-RAM volume table copy
405 struct ubi_vtbl_record *vtbl; member in struct:ubi_device
479 /* vtbl.c */
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/aes/asm/
H A Dbsaes-armv7.pl347 vtbl.8 `&Dlo(@x[0])`, {@t[0]}, `&Dlo($mask)`
348 vtbl.8 `&Dhi(@x[0])`, {@t[0]}, `&Dhi($mask)`
351 vtbl.8 `&Dlo(@x[1])`, {@t[1]}, `&Dlo($mask)`
352 vtbl.8 `&Dhi(@x[1])`, {@t[1]}, `&Dhi($mask)`
355 vtbl.8 `&Dlo(@x[2])`, {@t[2]}, `&Dlo($mask)`
356 vtbl.8 `&Dhi(@x[2])`, {@t[2]}, `&Dhi($mask)`
358 vtbl.8 `&Dlo(@x[3])`, {@t[3]}, `&Dlo($mask)`
359 vtbl.8 `&Dhi(@x[3])`, {@t[3]}, `&Dhi($mask)`
363 vtbl.8 `&Dlo(@x[4])`, {@t[0]}, `&Dlo($mask)`
364 vtbl
[all...]
H A Daesv8-armx.pl106 vtbl.8 $key,{$in0},$mask
124 vtbl.8 $key,{$in0},$mask
138 vtbl.8 $key,{$in0},$mask
164 vtbl.8 $key,{$in1},$mask
199 vtbl.8 $key,{$in1},$mask
947 sprintf "vtbl.8 d%d,{q%d},d%d\n\t".
948 "vtbl.8 d%d,{q%d},d%d", 2*$1,$2,2*$3, 2*$1+1,$2,2*$3+1;
978 s/vtbl\.8\s+(.*)/unvtbl($1)/geo or
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/aes/asm/
H A Dbsaes-armv7.pl347 vtbl.8 `&Dlo(@x[0])`, {@t[0]}, `&Dlo($mask)`
348 vtbl.8 `&Dhi(@x[0])`, {@t[0]}, `&Dhi($mask)`
351 vtbl.8 `&Dlo(@x[1])`, {@t[1]}, `&Dlo($mask)`
352 vtbl.8 `&Dhi(@x[1])`, {@t[1]}, `&Dhi($mask)`
355 vtbl.8 `&Dlo(@x[2])`, {@t[2]}, `&Dlo($mask)`
356 vtbl.8 `&Dhi(@x[2])`, {@t[2]}, `&Dhi($mask)`
358 vtbl.8 `&Dlo(@x[3])`, {@t[3]}, `&Dlo($mask)`
359 vtbl.8 `&Dhi(@x[3])`, {@t[3]}, `&Dhi($mask)`
363 vtbl.8 `&Dlo(@x[4])`, {@t[0]}, `&Dlo($mask)`
364 vtbl
[all...]
H A Daesv8-armx.pl106 vtbl.8 $key,{$in0},$mask
124 vtbl.8 $key,{$in0},$mask
138 vtbl.8 $key,{$in0},$mask
164 vtbl.8 $key,{$in1},$mask
199 vtbl.8 $key,{$in1},$mask
947 sprintf "vtbl.8 d%d,{q%d},d%d\n\t".
948 "vtbl.8 d%d,{q%d},d%d", 2*$1,$2,2*$3, 2*$1+1,$2,2*$3+1;
978 s/vtbl\.8\s+(.*)/unvtbl($1)/geo or

Completed in 139 milliseconds