HomeSort by relevance Sort by last modified time
    Searched defs:Add (Results 1 - 25 of 370) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/CodeGen/
MachinePassRegistry.cpp 20 /// Add - Adds a function pass to the registration list.
22 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) {
  /prebuilts/go/darwin-x86/misc/cgo/test/
cthread.go 21 //export Add
22 func Add(x int) {
35 t.Skip("the iOS exec wrapper is unable to properly handle the panic from Add")
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/sysdll/
sysdll.go 15 // the case registered with Add is also the same case used with
22 // Add notes that dll is a system32 DLL which should only be loaded
25 func Add(dll string) string {
  /prebuilts/go/linux-x86/misc/cgo/test/
cthread.go 21 //export Add
22 func Add(x int) {
35 t.Skip("the iOS exec wrapper is unable to properly handle the panic from Add")
  /prebuilts/go/linux-x86/src/internal/syscall/windows/sysdll/
sysdll.go 15 // the case registered with Add is also the same case used with
22 // Add notes that dll is a system32 DLL which should only be loaded
25 func Add(dll string) string {
  /external/llvm/lib/CodeGen/
MachinePassRegistry.cpp 34 /// Add - Adds a function pass to the registration list.
36 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) {
  /external/compiler-rt/lib/tsan/rtl/
tsan_ignoreset.cc 23 void IgnoreSet::Add(u32 stack_id) {
  /external/nanopb-c/generator/google/protobuf/
descriptor_database.py 43 def Add(self, file_desc_proto):
47 file_desc_proto: The FileDescriptorProto to add.
64 using the Add method or else an error will be raised.
88 this database using the Add method or else an error will be raised.
  /frameworks/base/media/mca/filterfw/native/core/
statistics.cpp 34 void IncrementalGaussian::Add(float value) {
  /prebuilts/go/darwin-x86/src/net/textproto/
header.go 11 // Add adds the key, value pair to the header.
13 func (h MIMEHeader) Add(key, value string) {
  /prebuilts/go/darwin-x86/src/sync/
waitgroup.go 14 // The main goroutine calls Add to set the number of
39 // Add adds delta, which may be negative, to the WaitGroup counter.
41 // If the counter goes negative, Add panics.
47 // Typically this means the calls to Add should execute before the statement
50 // new Add calls must happen after all previous Wait calls have returned.
52 func (wg *WaitGroup) Add(delta int) {
78 panic("sync: WaitGroup misuse: Add called concurrently with Wait")
89 panic("sync: WaitGroup misuse: Add called concurrently with Wait")
100 wg.Add(-1)
125 // Wait must be synchronized with the first Add
    [all...]
  /prebuilts/go/linux-x86/src/net/textproto/
header.go 11 // Add adds the key, value pair to the header.
13 func (h MIMEHeader) Add(key, value string) {
  /prebuilts/go/linux-x86/src/sync/
waitgroup.go 14 // The main goroutine calls Add to set the number of
39 // Add adds delta, which may be negative, to the WaitGroup counter.
41 // If the counter goes negative, Add panics.
47 // Typically this means the calls to Add should execute before the statement
50 // new Add calls must happen after all previous Wait calls have returned.
52 func (wg *WaitGroup) Add(delta int) {
78 panic("sync: WaitGroup misuse: Add called concurrently with Wait")
89 panic("sync: WaitGroup misuse: Add called concurrently with Wait")
100 wg.Add(-1)
125 // Wait must be synchronized with the first Add
    [all...]
  /system/keymaster/
operation_table.cpp 34 keymaster_error_t OperationTable::Add(Operation* operation,
  /art/runtime/
signal_set.h 34 void Add(int signal) {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
VpdInfoFile.py 81 ## Add a VPD PCD collected from platform's autogen when building.
88 def Add(self, Vpd, Offset):
  /external/clang/include/clang/Sema/
CXXFieldCollector.h 55 /// Add - Called by Sema::ActOnCXXMemberDeclarator.
56 void Add(FieldDecl *D) {
  /external/dng_sdk/source/
dng_mosaic_info.cpp 64 void Add (const dng_point &delta,
77 void dng_bilinear_kernel::Add (const dng_point &delta,
81 // Don't add zero weight elements.
105 // Add element to list.
625 kernel.Add (dng_point (0, 0), 1.0f);
654 kernel.Add (dng_point (-1, 0), 0.25f);
655 kernel.Add (dng_point ( 0, -1), 0.25f);
656 kernel.Add (dng_point ( 0, 1), 0.25f);
657 kernel.Add (dng_point ( 1, 0), 0.25f);
668 kernel.Add (dng_point (-1, 0), 0.5f)
    [all...]
  /external/jacoco/org.jacoco.examples/build/src/main/java/org/jacoco/examples/expressions/
Add.java 14 public class Add implements IExpression {
20 public Add(final IExpression l, final IExpression r) {
  /external/libmojo/mojo/edk/system/
watcher_set.cc 27 MojoResult WatcherSet::Add(MojoHandleSignals signals,
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 46 // Add a basic block to the function... again, it automatically inserts
54 // Create the add instruction... does not insert...
55 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
59 BB->getInstList().push_back(Add);
61 // Create the return instruction and add it to the basic block
62 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/pdfium/core/fpdfdoc/
clines.cpp 36 int32_t CLines::Add(const CPVT_LineInfo& lineinfo) {
40 m_Lines.Add(pLine);
  /external/protobuf/python/google/protobuf/
descriptor_database.py 51 def Add(self, file_desc_proto):
55 file_desc_proto: The FileDescriptorProto to add.
57 DescriptorDatabaseException: if an attempt is made to add a proto
68 # Add the top-level Message, Enum and Extension descriptors to the index.
85 using the Add method or else an error will be raised.
109 this database using the Add method or else an error will be raised.
  /external/swiftshader/third_party/LLVM/examples/ModuleMaker/
ModuleMaker.cpp 40 // Add a basic block to the function... again, it automatically inserts
48 // Create the add instruction... does not insert...
49 Instruction *Add = BinaryOperator::Create(Instruction::Add, Two, Three,
53 BB->getInstList().push_back(Add);
55 // Create the return instruction and add it to the basic block
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/webrtc/webrtc/modules/video_coding/
timestamp_map.cc 27 void VCMTimestampMap::Add(uint32_t timestamp, VCMFrameInformation* data) {

Completed in 1364 milliseconds

1 2 3 4 5 6 7 8 91011>>