| /external/capstone/ |
| config.mk | 23 # more compact: use less memory & smaller in binary size. 25 # such as @regs_read/write & @group. The amount of binary size reduced is 37 # non-critical instruction sets of X86, making the binary size smaller by ~60%.
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
| parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 9 (* precedence - Get the precedence of the pending binary operator token. *) 63 (* Parse the primary expression after the binary operator. *) 80 let lhs = Ast.Binary (c, lhs, rhs) in
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
| parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 9 (* precedence - Get the precedence of the pending binary operator token. *) 63 (* Parse the primary expression after the binary operator. *) 80 let lhs = Ast.Binary (c, lhs, rhs) in
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/ |
| parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 9 (* precedence - Get the precedence of the pending binary operator token. *) 63 (* Parse the primary expression after the binary operator. *) 80 let lhs = Ast.Binary (c, lhs, rhs) in
|
| toy.ml | 13 (* Install standard binary operators.
|
| /external/protobuf/csharp/src/Google.Protobuf.JsonDump/ |
| Program.cs | 6 // Redistribution and use in source and binary forms, with or without
12 // * Redistributions in binary form must reproduce the above
39 /// Small utility to load a binary message and dump it in JSON format.
|
| /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/ |
| parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 9 (* precedence - Get the precedence of the pending binary operator token. *) 63 (* Parse the primary expression after the binary operator. *) 80 let lhs = Ast.Binary (c, lhs, rhs) in
|
| /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/ |
| parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 9 (* precedence - Get the precedence of the pending binary operator token. *) 63 (* Parse the primary expression after the binary operator. *) 80 let lhs = Ast.Binary (c, lhs, rhs) in
|
| /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/ |
| parser.ml | 5 (* binop_precedence - This holds the precedence for each binary operator that is 9 (* precedence - Get the precedence of the pending binary operator token. *) 63 (* Parse the primary expression after the binary operator. *) 80 let lhs = Ast.Binary (c, lhs, rhs) in
|
| /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/ |
| outbuf.go | 10 "encoding/binary" 74 binary.BigEndian.PutUint32(out.encbuf[:], v) 84 binary.BigEndian.PutUint64(out.encbuf[:], v)
|
| /prebuilts/go/darwin-x86/src/debug/pe/ |
| section.go | 8 "encoding/binary" 61 err = binary.Read(r, binary.LittleEndian, relocs)
|
| /prebuilts/go/linux-x86/src/cmd/link/internal/ld/ |
| outbuf.go | 10 "encoding/binary" 74 binary.BigEndian.PutUint32(out.encbuf[:], v) 84 binary.BigEndian.PutUint64(out.encbuf[:], v)
|
| /prebuilts/go/linux-x86/src/debug/pe/ |
| section.go | 8 "encoding/binary" 61 err = binary.Read(r, binary.LittleEndian, relocs)
|
| /prebuilts/tools/common/m2/repository/commons-codec/commons-codec/1.10/ |
| commons-codec-1.10.jar | |
| /prebuilts/tools/common/offline-m2/commons-codec/commons-codec/1.10/ |
| commons-codec-1.10.jar | |
| /art/runtime/ |
| dex2oat_environment_test.h | 134 std::ifstream src_stream(src, std::ios::binary); 135 std::ofstream dst_stream(dst, std::ios::binary);
|
| /art/test/testrunner/ |
| env.py | 177 binary = tool if tool != 'dxmerger' else 'dexmerger' 178 os.environ.setdefault(tool.upper(), HOST_OUT_EXECUTABLES + '/' + binary)
|
| /cts/suite/audio_quality/lib/src/audio/ |
| Buffer.cpp | 91 std::ifstream file(filename.string(), std::ios::in | std::ios::binary | 116 std::ofstream file(filenameWithExtension.string(), std::ios::out | std::ios::binary |
|
| /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
| constants.rb | 10 Redistribution and use in source and binary forms, with or without 16 2. Redistributions in binary form must reproduce the above copyright
|
| /external/autotest/client/site_tests/video_JEAPerf/ |
| video_JEAPerf.py | 26 This test monitors performance metrics reported by Chrome test binary, 31 binary = 'jpeg_encode_accelerator_unittest' variable in class:video_JEAPerf 112 self.run_chrome_test_binary(self.binary, cmd_line)
|
| /external/deqp/executor/tools/ |
| xeBatchResultToJUnit.cpp | 67 std::ifstream in (filename, std::ios_base::binary); 138 std::ofstream out (dstFileName, std::ios_base::binary);
|
| xeExtractSampleLists.cpp | 46 std::ofstream out (filename.c_str(), std::ios_base::binary); 135 std::ifstream in (filename, std::ifstream::binary|std::ifstream::in);
|
| /external/deqp/external/vulkancts/modules/vulkan/ |
| vktDrawUtil.hpp | 120 const vk::ProgramBinary* binary; member in struct:vkt::drawutil::VulkanShader 124 , binary (&binary_)
|
| /external/jemalloc/bin/ |
| jemalloc-config.in | 13 --bindir : Print binary installation directory.
|
| /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
| ast.ml | 13 (* variant for a binary operator. *) 14 | Binary of char * expr * expr
|