HomeSort by relevance Sort by last modified time
    Searched refs:Push (Results 1 - 25 of 484) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/pdfium/core/fpdfapi/page/
cpdf_psengine.cpp 136 pEngine->Push(m_Operators[i]->GetFloatValue());
180 void CPDF_PSEngine::Push(float v) {
209 Push(d1 + d2);
214 Push(d1 - d2);
219 Push(d1 * d2);
224 Push(d1 / d2);
232 Push(result.ValueOrDefault(0));
234 Push(0);
243 Push(result.ValueOrDefault(0));
245 Push(0)
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
memorybuffer.h 42 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
47 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
65 std::memset(memoryBuffer.stack_.Push<char>(n), c, n * sizeof(c));
stringbuffer.h 50 void Put(Ch c) { *stack_.template Push<Ch>() = c; }
55 // Push and pop a null terminator. This is safe.
56 *stack_.template Push<Ch>() = '\0';
60 Ch* Push(size_t count) { return stack_.template Push<Ch>(count); }
64 // Push and pop a null terminator. This is safe.
65 *stack_.template Push<Ch>() = '\0';
88 std::memset(stream.stack_.Push<char>(n), c, n * sizeof(c));
  /tools/dexter/slicer/export/slicer/
buffer.h 72 // is only valid until the next buffer push/alloc
96 size_t Push(const void* ptr, size_t size) {
103 size_t Push(const MemView& memView) {
104 return Push(memView.ptr(), memView.size());
108 size_t Push(const ArrayView<T>& a) {
109 return Push(a.data(), a.size() * sizeof(T));
113 size_t Push(const std::vector<T>& v) {
114 return Push(v.data(), v.size() * sizeof(T));
117 size_t Push(const Buffer& buff) {
119 return Push(buff.data(), buff.size())
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCAPElim.cpp 94 Instruction *Push = nullptr;
99 Push = Inst;
102 // If this pop matches a push and nothing in between can autorelease,
104 if (Push && cast<CallInst>(Inst)->getArgOperand(0) == Push) {
106 DEBUG(dbgs() << "ObjCARCAPElim::OptimizeBB: Zapping push pop "
109 << " Push: " << *Push << "\n");
111 Push->eraseFromParent();
113 Push = nullptr
    [all...]
  /prebuilts/go/darwin-x86/src/container/heap/
heap_test.go 31 func (h *myHeap) Push(v interface{}) {
59 h.Push(0) // all elements are the same
76 h.Push(i) // all elements are different
95 h.Push(i)
101 Push(h, i)
108 Push(h, 20+i)
120 h.Push(i)
137 h.Push(i)
155 h.Push(i)
180 Push(&h, 0) // all elements are the sam
    [all...]
example_intheap_test.go 20 func (h *IntHeap) Push(x interface{}) {
21 // Push and Pop use pointer receivers because they modify the slice's length,
39 heap.Push(h, 3)
heap.go 13 // ordering for the Less method, so Push adds items while Pop removes the
27 // Note that Push and Pop in this interface are for package heap's
29 // use heap.Push and heap.Pop.
32 Push(x interface{}) // add x as element Len()
49 // Push pushes the element x onto the heap. The complexity is
52 func Push(h Interface, x interface{}) {
53 h.Push(x)
84 // but less expensive than, calling Remove(h, i) followed by a Push of the new value.
  /prebuilts/go/linux-x86/src/container/heap/
heap_test.go 31 func (h *myHeap) Push(v interface{}) {
59 h.Push(0) // all elements are the same
76 h.Push(i) // all elements are different
95 h.Push(i)
101 Push(h, i)
108 Push(h, 20+i)
120 h.Push(i)
137 h.Push(i)
155 h.Push(i)
180 Push(&h, 0) // all elements are the sam
    [all...]
example_intheap_test.go 20 func (h *IntHeap) Push(x interface{}) {
21 // Push and Pop use pointer receivers because they modify the slice's length,
39 heap.Push(h, 3)
heap.go 13 // ordering for the Less method, so Push adds items while Pop removes the
27 // Note that Push and Pop in this interface are for package heap's
29 // use heap.Push and heap.Pop.
32 Push(x interface{}) // add x as element Len()
49 // Push pushes the element x onto the heap. The complexity is
52 func Push(h Interface, x interface{}) {
53 h.Push(x)
84 // but less expensive than, calling Remove(h, i) followed by a Push of the new value.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
StackList.cs 52 public void Push(object item)
  /external/libmojo/mojo/public/cpp/bindings/tests/
message_queue.h 26 void Push(Message* message);
message_queue.cc 25 void MessageQueue::Push(Message* message) {
26 queue_.push(new Message());
  /tools/dexter/slicer/
bytecode_encoder.cc 143 bytecode_.Push<dex::u2>(Pack_Z_8(opcode));
151 bytecode_.Push<dex::u2>(Pack_4_4_8(vB, vA, opcode));
159 bytecode_.Push<dex::u2>(Pack_8_8(vA, opcode));
160 bytecode_.Push<dex::u2>(Pack_16(vB));
168 bytecode_.Push<dex::u2>(Pack_Z_8(opcode));
169 bytecode_.Push<dex::u2>(Pack_16(vA));
170 bytecode_.Push<dex::u2>(Pack_16(vB));
178 bytecode_.Push<dex::u2>(Pack_4_4_8(B, vA, opcode));
186 bytecode_.Push<dex::u2>(Pack_8_8(vA, opcode));
187 bytecode_.Push<dex::u2>(Pack_16(B))
    [all...]
debuginfo_encoder.cc 35 dbginfo_.Push<dex::u1>(dex::DBG_ADVANCE_PC);
60 dbginfo_.Push<dex::u1>(dex::DBG_ADVANCE_LINE);
66 dbginfo_.Push<dex::u1>(special_opcode);
75 dbginfo_.Push<dex::u1>(dex::DBG_START_LOCAL);
86 dbginfo_.Push<dex::u1>(dex::DBG_START_LOCAL_EXTENDED);
96 dbginfo_.Push<dex::u1>(dbg_annotation->dbg_opcode);
102 dbginfo_.Push<dex::u1>(dbg_annotation->dbg_opcode);
109 dbginfo_.Push<dex::u1>(dex::DBG_SET_FILE);
136 dbginfo_.Push<dex::u1>(dex::DBG_END_SEQUENCE);
  /external/clang/test/Preprocessor/
_Pragma-in-macro-arg.c 4 #define A(desc) _Pragma("clang diagnostic push") _Pragma("clang diagnostic ignored \"-Wparentheses\"") _Pragma("clang diagnostic pop")
23 #define IGNORE_POPPUSH(Pop, Push, W, D) Push W D Pop
24 IGNORE_POPPUSH(_Pragma("clang diagnostic pop"), _Pragma("clang diagnostic push"),
  /external/v8/src/ic/x64/
handler-compiler-x64.cc 29 __ Push(slot);
30 __ Push(vector);
96 __ Push(name);
97 __ Push(receiver);
98 __ Push(holder);
115 __ Push(receiver);
120 __ Push(store_parameter);
225 __ Push(value());
238 __ Push(receiver);
239 __ Push(value())
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter.cc 430 Push("fields", Item::MAP, true, true);
443 Push("struct_value", Item::MESSAGE, true, false);
444 Push("fields", Item::MAP, true, true);
482 Push("", Item::MESSAGE, false, false);
485 Push("value", Item::MESSAGE, true, false);
494 Push("fields", Item::MAP, true, true);
503 Push("struct_value", Item::MESSAGE, true, false);
504 Push("fields", Item::MAP, true, true);
517 Push(name, Item::MESSAGE, false, false);
518 Push("fields", Item::MAP, true, true)
    [all...]
  /bionic/libc/arch-arm64/bionic/
__bionic_clone.S 34 # Push 'fn' and 'arg' onto the child stack.
  /device/google/cuttlefish_common/common/libs/thread_safe_queue/
thread_safe_queue.h 26 // Simple queue with Push and Pop capabilities.
27 // If the max_elements argument is passed to the constructor, and Push is called
31 // other threads calling Push() or Pop().
53 void Push(T&& t) {
60 void Push(const T& t) {
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 113 FIStackList.Push(Item);
115 FIStackList.Push(Item);
122 FIStackList.Push('Item 1');
123 FIStackList.Push('Item 2');
124 FIStackList.Push('Item 3');
  /external/v8/src/compiler-dispatcher/
compiler-dispatcher-tracer.cc 91 prepare_parse_events_.Push(duration_ms);
97 parse_events_.Push(std::make_pair(source_length, duration_ms));
102 finalize_parsing_events_.Push(duration_ms);
107 analyze_events_.Push(duration_ms);
112 prepare_compile_events_.Push(duration_ms);
118 compile_events_.Push(std::make_pair(ast_size_in_bytes, duration_ms));
123 finalize_compiling_events_.Push(duration_ms);
  /external/libmojo/third_party/catapult/devil/devil/android/
device_utils_devicetest.py 88 self.adb.Push(host_file_path, device_file_path)
100 self.adb.Push(host_file_path, device_file_path)
118 self.adb.Push(host_file_path, device_file_path)
138 self.adb.Push(host_file_path1, device_file_path1)
139 self.adb.Push(host_file_path2, device_file_path2)
178 self.adb.Push(host_file_path1, device_file_path1)
179 self.adb.Push(host_file_path2, device_file_path2)
180 self.adb.Push(host_file_path3, device_file_path3)
181 self.adb.Push(host_file_path4, device_file_path4)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
ListStack`1.cs 93 public void Push(T item)

Completed in 921 milliseconds

1 2 3 4 5 6 7 8 91011>>