HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 601 - 625 of 1922) sorted by null

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/src/syscall/
lsf_linux.go 2 // Use of this source code is governed by a BSD-style
14 func LsfStmt(code, k int) *SockFilter {
15 return &SockFilter{Code: uint16(code), K: uint32(k)}
19 func LsfJump(code, k, jt, jf int) *SockFilter {
20 return &SockFilter{Code: uint16(code), Jt: uint8(jt), Jf: uint8(jf), K: uint32(k)}
  /prebuilts/go/linux-x86/doc/progs/
error4.go 2 // Use of this source code is governed by a BSD-style
5 // This file contains the code snippets included in "Error Handling and Go."
17 Code int
28 http.Error(w, e.Message, e.Code)
  /prebuilts/go/linux-x86/src/cmd/internal/objfile/
goobj.go 2 // Use of this source code is governed by a BSD-style
67 sym := Sym{Addr: uint64(s.Data.Offset), Name: goobjName(s.SymID), Size: int64(s.Size), Type: s.Type.Name, Code: '?'}
70 sym.Code = 'T'
72 sym.Code = 'R'
74 sym.Code = 'D'
76 sym.Code = 'B'
79 sym.Code += 'a' - 'A'
91 sym := Sym{Name: goobjName(r.Sym), Code: 'U'}
94 sym.Code = 'u'
pe.go 2 // Use of this source code is governed by a BSD-style
49 sym := Sym{Name: s.Name, Addr: uint64(s.Value), Code: '?'}
52 sym.Code = 'U'
54 sym.Code = 'C'
56 sym.Code = '?'
71 sym.Code = 'T'
74 sym.Code = 'R'
76 sym.Code = 'D'
79 sym.Code = 'B'
113 // TODO: Remove code looking for the old symbols when we no longer care about 1.3
    [all...]
  /prebuilts/go/linux-x86/src/syscall/
lsf_linux.go 2 // Use of this source code is governed by a BSD-style
14 func LsfStmt(code, k int) *SockFilter {
15 return &SockFilter{Code: uint16(code), K: uint32(k)}
19 func LsfJump(code, k, jt, jf int) *SockFilter {
20 return &SockFilter{Code: uint16(code), Jt: uint8(jt), Jf: uint8(jf), K: uint32(k)}
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/sh64/
datal-1.s 3 ! completely redundant. Code tests are for SHmedia mode.
datal-2.s 3 ! completely redundant. Code tests are for SHcompact mode.
datal-3.s 3 ! Code tests are for SHmedia mode.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-aarch64/
eh-frame.d 8 Code alignment factor: .
49 Code alignment factor: .
  /tools/dexter/slicer/export/slicer/
bytecode_encoder.h 29 // Generates .dex bytecode from code IR
38 void Encode(ir::Code* ir_code, std::shared_ptr<ir::DexFile> dex_ir);
59 // Structure used to track code location fixups
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
181 /// EmitCode - Emit the specified code.
249 // Restore the inner block's code size and abbrev table.
295 /// emission code. If BlobData is non-null, then it specifies an array of
297 /// known to exist at the end of the record. If Code is specified, then
298 /// it is the record code to emit before the Vals, which must not contain
299 /// the code.
302 StringRef Blob, Optional<unsigned> Code) {
312 if (Code) {
317 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp 432 unsigned Code = Stream.ReadCode();
433 if (Code == bitc::END_BLOCK) {
439 if (Code == bitc::ENTER_SUBBLOCK) {
447 if (Code == bitc::DEFINE_ABBREV) {
454 switch (Stream.ReadRecord(Code, Record)) {
461 // FIXME : Remove this autoupgrade code in LLVM 3.0.
539 unsigned Code = Stream.ReadCode();
540 if (Code == bitc::END_BLOCK) {
548 if (Code == bitc::ENTER_SUBBLOCK) {
556 if (Code == bitc::DEFINE_ABBREV)
    [all...]
  /external/tensorflow/tensorflow/core/platform/
env_test.cc 78 EXPECT_EQ(error::OUT_OF_RANGE, f->Read(0, 3, &result, scratch).code());
184 EXPECT_EQ(error::Code::NOT_FOUND, env_->FileExists(root_file1).code());
185 EXPECT_EQ(error::Code::NOT_FOUND, env_->FileExists(root_file2).code());
186 EXPECT_EQ(error::Code::NOT_FOUND, env_->FileExists(root_file3).code());
187 EXPECT_EQ(error::Code::NOT_FOUND, env_->FileExists(child1_file1).code());
197 EXPECT_EQ(error::Code::NOT_FOUND, s.code())
    [all...]
  /external/v8/src/x87/
codegen-x87.cc 2 // Use of this source code is governed by a BSD-style license that can be
103 // Generated code is put into a fixed, unmovable buffer, and not into
202 // TODO(jkummerow): It would be nice to register this code creation event
211 // Code generators
308 // Load the two-byte character code into the result register.
348 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) {
354 Code::Age Code::GetCodeAge(Isolate* isolate, byte* sequence) {
360 Code* stub = GetCodeFromTargetAddress(target_address);
364 void Code::PatchPlatformCodeAge(Isolate* isolate, byte* sequence
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Bitcode/
BitstreamWriter.h 37 /// CurCodeSize - This is the declared size of code values used for the
177 /// EmitCode - Emit the specified code.
245 // Restore the inner block's code size and abbrev table.
291 /// emission code. If BlobData is non-null, then it specifies an array of
293 /// known to exist at the end of the record. If Code is specified, then
294 /// it is the record code to emit before the Vals, which must not contain
295 /// the code.
298 StringRef Blob, Optional<unsigned> Code) {
308 if (Code) {
313 EmitAbbreviatedLiteral(Op, Code.getValue())
    [all...]

Completed in 2294 milliseconds

<<21222324252627282930>>