Searched defs:OF (Results 1 - 14 of 14) sorted by relevance

/external/flac/libFLAC/ia32/
H A Dnasm.h21 ; LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 ; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 ; PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF variable
28 ; NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 ; SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dioapi.h127 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode)); typedef
128 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size)); typedef
129 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); typedef
130 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
131 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
133 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
134 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
150 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream)); typedef
151 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
152 typedef voidpf (ZCALLBACK *open64_file_func) OF((voidp typedef
[all...]
/external/llvm/lib/Object/
H A DObject.cpp22 inline ObjectFile *unwrap(LLVMObjectFileRef OF) { argument
23 return reinterpret_cast<ObjectFile*>(OF);
26 inline LLVMObjectFileRef wrap(const ObjectFile *OF) { argument
27 return reinterpret_cast<LLVMObjectFileRef>(const_cast<ObjectFile*>(OF));
/external/zlib/src/contrib/minizip/
H A Dioapi.h135 typedef voidpf (ZCALLBACK *open_file_func) OF((voidpf opaque, const char* filename, int mode)); typedef
136 typedef uLong (ZCALLBACK *read_file_func) OF((voidpf opaque, voidpf stream, void* buf, uLong size)); typedef
137 typedef uLong (ZCALLBACK *write_file_func) OF((voidpf opaque, voidpf stream, const void* buf, uLong size)); typedef
138 typedef int (ZCALLBACK *close_file_func) OF((voidpf opaque, voidpf stream));
139 typedef int (ZCALLBACK *testerror_file_func) OF((voidpf opaque, voidpf stream));
141 typedef long (ZCALLBACK *tell_file_func) OF((voidpf opaque, voidpf stream));
142 typedef long (ZCALLBACK *seek_file_func) OF((voidpf opaque, voidpf stream, uLong offset, int origin));
158 typedef ZPOS64_T (ZCALLBACK *tell64_file_func) OF((voidpf opaque, voidpf stream)); typedef
159 typedef long (ZCALLBACK *seek64_file_func) OF((voidpf opaque, voidpf stream, ZPOS64_T offset, int origin));
160 typedef voidpf (ZCALLBACK *open64_file_func) OF((voidp typedef
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dzconf.h166 #ifndef OF /* function prototypes */
168 # define OF(args) args macro
170 # define OF(args) () macro
/external/chromium_org/sdch/open-vcdiff/src/zlib/
H A Dzconf.h166 #ifndef OF /* function prototypes */
168 # define OF(args) args macro
170 # define OF(args) () macro
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp285 const ObjectFile *OF = Obj.getObjectFile(); local
286 const MachOObjectFile *MachO = static_cast<const MachOObjectFile*>(OF);
/external/open-vcdiff/src/zlib/
H A Dzconf.h166 #ifndef OF /* function prototypes */
168 # define OF(args) args macro
170 # define OF(args) () macro
/external/qemu/distrib/zlib-1.2.3/
H A Dzconf.h166 #ifndef OF /* function prototypes */
168 # define OF(args) args macro
170 # define OF(args) () macro
/external/dropbear/libtomcrypt/
H A Dcrypt.tex4242 \hline LTC\_ASN1\_SEQUENCE & SEQUENCE (and SEQUENCE OF) \\
4244 \hline LTC\_ASN1\_SETOF & SET OF \\
4357 \subsection{SET and SET OF}
4359 \index{SET} \index{SET OF}
4360 SET and SET OF are related to the SEQUENCE type in that they can be pretty much be decoded with the same code. However, they are different, and they should
4361 be carefully noted. The SET type is an unordered array of ASN.1 types sorted by the TAG (type identifier), whereas the SET OF type is an ordered array of
4401 \subsubsection{SET OF Encoding}
4402 A \textit{SET OF} object is an array of identical objects (e.g. OCTET STRING) sorted in ascending order by the DER encoding of the object. They are
4414 This will encode a \textit{SET OF} containing the \textit{list} of \textit{inlen} ASN.1 objects and store the encoding in the output buffer \textit{out} of length \textit{outlen}.
4416 The routine will first encode the SET OF i
[all...]
/external/chromium_org/third_party/zlib/
H A Dzconf.h241 #ifndef OF /* function prototypes */
243 # define OF(args) args macro
245 # define OF(args) () macro
/external/llvm/lib/MC/
H A DMCAssembler.cpp460 const MCOrgFragment &OF = cast<MCOrgFragment>(F); local
462 if (!OF.getOffset().EvaluateAsAbsolute(TargetLocation, Layout))
466 uint64_t FragmentOffset = Layout.getFragmentOffset(&OF);
667 const MCOrgFragment &OF = cast<MCOrgFragment>(F); local
670 OW->Write8(uint8_t(OF.getValue()));
676 const MCDwarfLineAddrFragment &OF = cast<MCDwarfLineAddrFragment>(F); local
677 OW->WriteBytes(OF.getContents().str());
1105 const MCOrgFragment *OF = cast<MCOrgFragment>(this); local
1107 OS << " Offset:" << OF->getOffset() << " Value:" << OF
1111 const MCDwarfLineAddrFragment *OF = cast<MCDwarfLineAddrFragment>(this); local
[all...]
/external/zlib/src/
H A Dzconf.h265 #ifndef OF /* function prototypes */
267 # define OF(args) args macro
269 # define OF(args) () macro
/external/zlib/
H A Dzconf.h265 #ifndef OF /* function prototypes */
267 # define OF(args) args macro
269 # define OF(args) () macro

Completed in 1173 milliseconds