HomeSort by relevance Sort by last modified time
    Searched refs:Move (Results 101 - 125 of 421) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/v8/src/regexp/x64/
regexp-macro-assembler-x64.cc 356 __ Move(code_object_pointer(), masm_.CodeObject());
524 __ Move(rax, table);
623 __ Move(rbx, ExternalReference::re_word_character_map());
637 __ Move(rbx, ExternalReference::re_word_character_map());
723 __ Move(kScratchRegister, stack_limit);
737 __ Move(code_object_pointer(), masm_.CodeObject());
779 __ Move(code_object_pointer(), masm_.CodeObject());
941 __ Move(code_object_pointer(), masm_.CodeObject());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/
vktShaderLibrary.cpp 81 using vk::Move;
732 Move<vk::VkShaderModule> m_shaderModules[glu::SHADERTYPE_LAST];
777 Move<vk::VkBuffer> createBuffer (Context& context, vk::VkDeviceSize size, vk::VkBufferUsageFlags usageFlags)
795 Move<vk::VkImage> createImage2D (Context& context, deUint32 width, deUint32 height, vk::VkFormat format, vk::VkImageTiling tiling, vk::VkImageUsageFlags usageFlags)
820 Move<vk::VkImageView> createAttachmentView (Context& context, vk::VkImage image, vk::VkFormat format)
843 Move<vk::VkRenderPass> createRenderPass (Context& context, vk::VkFormat colorAttFormat)
910 Move<vk::VkDescriptorSetLayout> createDescriptorSetLayout (Context& context, deUint32 shaderStages)
921 Move<vk::VkPipelineLayout> createPipelineLayout (Context& context, vk::VkDescriptorSetLayout descriptorSetLayout)
    [all...]
vktTestCase.cpp 88 Move<VkInstance> createInstance (const PlatformInterface& vkp, const tcu::CommandLine& cmdLine)
122 Move<VkDevice> createDefaultDevice (const InstanceInterface& vki,
  /external/v8/src/compiler/arm/
code-generator-arm.cc 391 /* Move the result in the double result register. */ \
405 /* Move the result in the double result register. */ \
769 __ Move(i.OutputRegister(), i.InputOperand2(0), i.OutputSBit());
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryPipelineBarrierTests.cpp 472 vk::Move<vk::VkCommandBuffer> createCommandBuffer (const vk::DeviceInterface& vkd,
490 vk::Move<vk::VkCommandBuffer> createBeginCommandBuffer (const vk::DeviceInterface& vkd,
514 vk::Move<vk::VkCommandBuffer> commandBuffer (createCommandBuffer(vkd, device, pool, level));
521 vk::Move<vk::VkCommandPool> createCommandPool (const vk::DeviceInterface& vkd,
537 vk::Move<vk::VkBuffer> createBuffer (const vk::DeviceInterface& vkd,
560 vk::Move<vk::VkDeviceMemory> allocMemory (const vk::DeviceInterface& vkd,
577 vk::Move<vk::VkDeviceMemory> bindBufferMemory (const vk::InstanceInterface& vki,
602 vk::Move<vk::VkDeviceMemory> memory (vk::allocateMemory(vkd, device, &allocationInfo));
627 vk::Move<vk::VkDeviceMemory> bindImageMemory (const vk::InstanceInterface& vki,
652 vk::Move<vk::VkDeviceMemory> memory (vk::allocateMemory(vkd, device, &allocationInfo))
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkPrograms.cpp 193 Move<VkShaderModule> createShaderModule (const DeviceInterface& deviceInterface, VkDevice device, const ProgramBinary& binary, VkShaderModuleCreateFlags flags)
vkPrograms.hpp 177 Move<VkShaderModule> createShaderModule (const DeviceInterface& deviceInterface, VkDevice device, const ProgramBinary& binary, VkShaderModuleCreateFlags flags);
  /external/libbrillo/brillo/
any_internal_impl_unittest.cc 117 TEST(Buffer, Move) {
118 // Move operations essentially leave the source object in a state that is
120 // guarantees on the exact state of the source after move (e.g. that the
121 // source Any will be Empty after the move is complete).
  /external/v8/src/compiler/mips/
code-generator-mips.cc 146 __ Move(result_, std::numeric_limits<float>::quiet_NaN());
160 __ Move(result_, std::numeric_limits<double>::quiet_NaN());
440 __ Move(at, kScratchReg2, i.OutputDoubleRegister()); \
496 /* Move the result in the double result register. */ \
507 /* Move the result in the double result register. */ \
    [all...]
  /external/v8/src/
splay-tree.h 83 // Move the node from one key to another.
84 bool Move(const Key& old_key, const Key& new_key);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
opers12.s 53 ;; Move insn with various operands
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.cpp 528 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &uniformBufferParams);
599 Move<VkBuffer> buffer = createBuffer(vk, vkDevice, &vertexBufferParams);
746 Move<VkImage> ShaderRenderCaseInstance::createImage2D (const tcu::Texture2D& texture,
778 Move<VkImage> vkTexture = createImage(vk, vkDevice, &imageCreateInfo);
830 Move<VkCommandPool> cmdPool = createCommandPool(vk, vkDevice, &cmdPoolParams);
851 Move<VkCommandBuffer> cmdBuffer = allocateCommandBuffer(vk, vkDevice, &cmdBufferParams);
953 Move<VkImage> vkTexture;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageUtil.cpp 176 Move<VkBuffer> buffer;
178 Move<VkCommandPool> cmdPool;
179 Move<VkCommandBuffer> cmdBuffer;
180 Move<VkFence> fence;
333 Move<VkBuffer> buffer;
335 Move<VkCommandPool> cmdPool;
336 Move<VkCommandBuffer> cmdBuffer;
337 Move<VkFence> fence;
    [all...]
  /external/libchrome/base/posix/
file_descriptor_shuffle_unittest.cc 20 MOVE,
53 bool Move(int src, int dest) override {
54 actions_.push_back(Action(Action::MOVE, src, dest));
100 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
111 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
112 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 2, 3));
122 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 0, 1));
134 EXPECT_TRUE(tracer.actions()[0] == Action(Action::MOVE, 10, 0));
148 EXPECT_TRUE(tracer.actions()[1] == Action(Action::MOVE, 0, 1));
149 EXPECT_TRUE(tracer.actions()[2] == Action(Action::MOVE, kDuplicateBase, 0))
    [all...]
  /external/v8/src/crankshaft/arm/
lithium-gap-resolver-arm.cc 12 // moves. We don't need access to roots while resolving the move list and using
35 LMoveOperands move = moves_[i]; local
39 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
40 root_index_ = i; // Any cycle is found when by reaching this move again.
68 // moves to perform, ignoring any move that is redundant (the source is
70 // unallocated, or the move was already eliminated).
73 LMoveOperands move = moves->at(i); local
74 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone())
    [all...]
  /external/v8/src/crankshaft/ppc/
lithium-gap-resolver-ppc.cc 28 LMoveOperands move = moves_[i]; local
32 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
33 root_index_ = i; // Any cycle is found when by reaching this move again.
55 // moves to perform, ignoring any move that is redundant (the source is
57 // unallocated, or the move was already eliminated).
60 LMoveOperands move = moves->at(i); local
61 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
68 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/crankshaft/s390/
lithium-gap-resolver-s390.cc 27 LMoveOperands move = moves_[i]; local
31 if (!move.IsEliminated() && !move.source()->IsConstantOperand()) {
32 root_index_ = i; // Any cycle is found when by reaching this move again.
53 // moves to perform, ignoring any move that is redundant (the source is
55 // unallocated, or the move was already eliminated).
58 LMoveOperands move = moves->at(i); local
59 if (!move.IsRedundant()) moves_.Add(move, cgen_->zone());
65 // Each call to this function performs a move and deletes it from the mov
    [all...]
  /external/v8/src/snapshot/
serializer.h 28 address_to_name_map_.Move(from->address(), to);
70 void Move(Address from, Address to) {
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiObjectManagementTests.cpp 437 static Move<VkInstance> create (const Environment& env, const Resources&, const Parameters&)
526 static Move<VkDevice> create (const Environment& env, const Resources& res, const Parameters&)
592 static Move<VkDeviceMemory> create (const Environment& env, const Resources&, const Parameters& params)
655 static Move<VkBuffer> create (const Environment& env, const Resources&, const Parameters& params)
713 static Move<VkBufferView> create (const Environment& env, const Resources& res, const Parameters& params)
788 static Move<VkImage> create (const Environment& env, const Resources&, const Parameters& params)
856 static Move<VkImageView> create (const Environment& env, const Resources& res, const Parameters& params)
897 static Move<VkSemaphore> create (const Environment& env, const Resources&, const Parameters& params)
933 static Move<VkFence> create (const Environment& env, const Resources&, const Parameters& params)
969 static Move<VkEvent> create (const Environment& env, const Resources&, const Parameters& params
    [all...]
  /external/v8/src/ic/x64/
handler-compiler-x64.cc 164 __ Move(holder, receiver);
209 __ Move(api_function_address, function_address,
368 __ Move(this->name(), name);
374 __ Move(this->name(), name);
447 __ Move(scratch1, validity_cell, RelocInfo::CELL);
448 // Move(..., CELL) loads the payload's address!
570 __ Move(rax, value);
  /external/v8/src/x64/
macro-assembler-x64.cc 68 Move(scratch, target);
85 Move(kScratchRegister, source);
103 Move(kScratchRegister, destination);
119 Move(destination, source);
148 Move(kScratchRegister, kZapValue, Assembler::RelocInfoNone());
301 Move(value, kZapValue, Assembler::RelocInfoNone());
302 Move(dst, kZapValue, Assembler::RelocInfoNone());
337 Move(value, kZapValue, Assembler::RelocInfoNone());
338 Move(index, kZapValue, Assembler::RelocInfoNone());
408 Move(dst, kZapValue, Assembler::RelocInfoNone())
    [all...]
builtins-x64.cc 551 __ Move(rbp, rsp);
584 __ Move(FieldOperand(rbx, JSGeneratorObject::kContinuationOffset),
727 __ Move(
875 __ Move(rbx, masm->isolate()->builtins()->InterpreterEntryTrampoline());
881 __ Move(
    [all...]
  /external/v8/src/compiler/mips64/
code-generator-mips64.cc 146 __ Move(result_, std::numeric_limits<float>::quiet_NaN());
160 __ Move(result_, std::numeric_limits<double>::quiet_NaN());
507 /* Move the result in the double result register. */ \
518 /* Move the result in the double result register. */ \
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 393 v->PushBack(Value().Move(), allocator);
411 v->PushBack(Value().Move(), allocator);
419 v->AddMember(Value(t->name, t->length, allocator).Move(), Value().Move(), allocator);
533 return GetWithDefault(root, ValueType(defaultValue).Move(), allocator);
571 //! Set a value in a subtree, with move semantics.
592 return Create(root, allocator) = ValueType(value, allocator).Move();
598 return Create(root, allocator) = ValueType(value, allocator).Move();
609 return Create(root, allocator) = ValueType(value).Move();
612 //! Set a value in a document, with move semantics
    [all...]

Completed in 1566 milliseconds

1 2 3 45 6 7 8 91011>>