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

1 2 3 4 5 6 7 8

  /external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
MeasureMapInternal.java 49 return attachments;
53 private final Map<String, String> attachments; field in class:MeasureMapInternal
55 private MeasureMapInternal(ArrayList<Measurement> measurements, Map<String, String> attachments) {
57 this.attachments = Collections.unmodifiableMap(new HashMap<String, String>(attachments));
89 this.attachments.put(key, value);
106 return new MeasureMapInternal(measurements, attachments);
110 private final Map<String, String> attachments = new HashMap<String, String>(); field in class:MeasureMapInternal.Builder
IntervalBucket.java 67 Map<String, String> attachments,
73 tagValueAggregationMap.get(tagValues).add(value, attachments, timestamp);
MutableAggregation.java 49 * @param attachments the contextual information on an {@link Exemplar}
52 abstract void add(double value, Map<String, String> attachments, Timestamp timestamp);
88 void add(double value, Map<String, String> attachments, Timestamp timestamp) {
157 void add(double value, Map<String, String> attachments, Timestamp timestamp) {
205 void add(double value, Map<String, String> attachments, Timestamp timestamp) {
294 void add(double value, Map<String, String> attachments, Timestamp timestamp) {
326 // No implicit recording for exemplars - if there are no attachments (contextual information),
328 if (!attachments.isEmpty() && exemplars != null) {
329 exemplars[bucket] = Exemplar.create(value, timestamp, attachments);
498 void add(double value, Map<String, String> attachments, Timestamp timestamp)
    [all...]
  /external/skia/src/gpu/vk/
GrVkFramebuffer.cpp 23 VkImageView attachments[3]; local
24 attachments[0] = colorAttachment->imageView();
27 attachments[numAttachments++] = stencilAttachment->imageView();
37 createInfo.pAttachments = attachments;
GrVkRenderPass.cpp 57 SkTArray<VkAttachmentDescription> attachments(numAttachments);
58 attachments.reset(numAttachments);
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription));
61 // Refs to attachments on the render pass (as described by teh VkAttachmentDescription above),
80 setup_vk_attachment_description(&attachments[currentAttachment],
103 setup_vk_attachment_description(&attachments[currentAttachment],
130 createInfo.pAttachments = attachments.begin();
160 // Get attachment information from render target. This includes which attachments the render
161 // target has (color, stencil) and the attachments format and sample count.
  /external/skqp/src/gpu/vk/
GrVkFramebuffer.cpp 23 VkImageView attachments[3]; local
24 attachments[0] = colorAttachment->imageView();
27 attachments[numAttachments++] = stencilAttachment->imageView();
37 createInfo.pAttachments = attachments;
GrVkRenderPass.cpp 57 SkTArray<VkAttachmentDescription> attachments(numAttachments);
58 attachments.reset(numAttachments);
59 memset(attachments.begin(), 0, numAttachments * sizeof(VkAttachmentDescription));
61 // Refs to attachments on the render pass (as described by teh VkAttachmentDescription above),
80 setup_vk_attachment_description(&attachments[currentAttachment],
103 setup_vk_attachment_description(&attachments[currentAttachment],
130 createInfo.pAttachments = attachments.begin();
160 // Get attachment information from render target. This includes which attachments the render
161 // target has (color, stencil) and the attachments format and sample count.
  /external/swiftshader/src/Vulkan/
VkFramebuffer.cpp 28 attachments(reinterpret_cast<ImageView**>(mem))
32 attachments[i] = Cast(pCreateInfo->pAttachments[i]);
38 vk::deallocate(attachments, pAllocator);
59 attachments[i]->clear(pClearValues[i],
67 attachments[i]->clear(pClearValues[i], VK_IMAGE_ASPECT_COLOR_BIT, renderArea);
83 attachments[subpass.pColorAttachments[attachment.colorAttachment].attachment]->clear(
93 attachments[subpass.pDepthStencilAttachment->attachment]->clear(attachment.clearValue, attachment.aspectMask, rect);
VkRenderPass.hpp 43 return attachments[i];
73 VkAttachmentDescription* attachments = nullptr; member in class:vk::RenderPass
VkFramebuffer.hpp 41 ImageView** attachments = nullptr; member in class:vk::Framebuffer
  /external/mesa3d/src/intel/vulkan/
anv_pass.c 59 struct anv_render_pass_attachment *attachments; local
65 anv_multialloc_add(&ma, &attachments, pCreateInfo->attachmentCount);
86 pass->attachments = attachments;
90 struct anv_render_pass_attachment *att = &pass->attachments[i];
111 subpass->attachments = subpass_attachments;
123 pass->attachments[a].usage |= VK_IMAGE_USAGE_INPUT_ATTACHMENT_BIT;
124 pass->attachments[a].last_subpass_idx = i;
126 init_first_subpass_layout(&pass->attachments[a],
144 pass->attachments[a].usage |= VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT
    [all...]
  /external/toolchain-utils/cros_utils/
email_sender.py 37 attachments=None):
41 email_from, msg_type, attachments)
44 email_from, msg_type, attachments)
47 email_from, msg_type, attachments):
68 if attachments:
69 for attachment in attachments:
84 email_from, msg_type, attachments):
123 if attachments:
125 for attachment in attachments:
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiGranularityTests.cpp 84 const std::vector<AttachmentInfo>& attachments,
109 const std::vector<AttachmentInfo>& attachments,
112 , m_attachments (attachments)
360 const std::vector<AttachmentInfo>& attachments,
373 const std::vector<AttachmentInfo>& attachments,
376 , m_attachments (attachments)
465 std::vector<AttachmentInfo> attachments; local
466 attachments.push_back(AttachmentInfo(format, rnd.getInt(1, maxDimension), rnd.getInt(1, maxDimension), 1));
467 single->addChild(new GranularityCase(testCtx, name.c_str(), description, attachments));
471 std::vector<AttachmentInfo> attachments; local
479 std::vector<AttachmentInfo> attachments; local
488 std::vector<AttachmentInfo> attachments; local
    [all...]
  /external/libchrome/ipc/
ipc_message_attachment_set.cc 21 const std::vector<scoped_refptr<MessageAttachment>>& attachments,
24 for (const scoped_refptr<MessageAttachment>& attachment : attachments) {
49 LOG(WARNING) << "MessageAttachmentSet destroyed with unconsumed attachments: "
  /external/mesa3d/src/glx/
dri2.h 73 unsigned int *attachments, int count,
83 unsigned int *attachments,
  /external/mesa3d/src/amd/vulkan/
radv_pass.c 48 size += pCreateInfo->attachmentCount * sizeof(pass->attachments[0]);
58 pass->attachments = (void *) pass + attachments_offset;
71 struct radv_render_pass_attachment *att = &pass->attachments[i];
124 pass->attachments[desc->pInputAttachments[j].attachment].view_mask |= subpass->view_mask;
136 pass->attachments[desc->pColorAttachments[j].attachment].view_mask |= subpass->view_mask;
151 pass->attachments[desc->pResolveAttachments[j].attachment].view_mask |= subpass->view_mask;
160 pass->attachments[desc->pDepthStencilAttachment->attachment].view_mask |= subpass->view_mask;
radv_meta_resolve.c 59 VkAttachmentDescription attachments[2]; local
63 attachments[i].format = vk_format;
64 attachments[i].samples = 1;
65 attachments[i].loadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
66 attachments[i].storeOp = VK_ATTACHMENT_STORE_OP_STORE;
68 attachments[0].initialLayout = VK_IMAGE_LAYOUT_GENERAL;
69 attachments[0].finalLayout = VK_IMAGE_LAYOUT_GENERAL;
70 attachments[1].initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
71 attachments[1].finalLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
77 .pAttachments = attachments,
    [all...]
  /external/opencensus-java/contrib/exemplar_util/src/test/java/io/opencensus/contrib/exemplar/util/
ExemplarUtilsTest.java 56 assertThat(measureMap.attachments)
81 private final Map<String, String> attachments = new HashMap<String, String>(); field in class:ExemplarUtilsTest.FakeMeasureMap
85 attachments.put(key, value);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_common_context.c 363 unsigned int attachments[10]; local
396 attachments[i++] = __DRI_BUFFER_FRONT_LEFT;
397 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[0]);
402 attachments[i++] = __DRI_BUFFER_BACK_LEFT;
403 attachments[i++] = radeon_bits_per_pixel(draw->color_rb[1]);
410 attachments[i++] = __DRI_BUFFER_DEPTH_STENCIL;
411 attachments[i++] = radeon_bits_per_pixel(depth_rb);
413 attachments[i++] = __DRI_BUFFER_DEPTH;
414 attachments[i++] = radeon_bits_per_pixel(depth_rb);
416 attachments[i++] = __DRI_BUFFER_STENCIL
    [all...]
  /external/libchrome/mojo/public/cpp/bindings/lib/
native_struct_serialization.cc 82 auto* attachments = message->attachment_set(); local
83 handles_writer.Allocate(attachments->size(), buffer);
84 for (unsigned i = 0; i < attachments->size(); ++i) {
88 auto attachment = attachments->GetAttachmentAt(i);
  /external/opencensus-java/api/src/main/java/io/opencensus/metrics/export/
Distribution.java 329 * @param attachments the contextual information about the example value.
334 double value, Timestamp timestamp, Map<String, String> attachments) {
335 Utils.checkNotNull(attachments, "attachments");
337 Collections.unmodifiableMap(new HashMap<String, String>(attachments));
339 Utils.checkNotNull(entry.getKey(), "key of attachments");
340 Utils.checkNotNull(entry.getValue(), "value of attachments");
  /external/mesa3d/src/gbm/backends/dri/
gbm_driint.h 69 unsigned int *attachments, int count,
74 unsigned int *attachments, int count,
  /external/deqp/modules/gles3/functional/
es3fFboInvalidateTests.cpp 56 vector<deUint32> attachments; local
59 attachments.push_back(GL_COLOR);
62 attachments.push_back(GL_DEPTH);
65 attachments.push_back(GL_STENCIL);
67 return attachments;
72 vector<deUint32> attachments; local
75 attachments.push_back(GL_COLOR_ATTACHMENT0);
79 attachments.push_back(GL_DEPTH_STENCIL_ATTACHMENT);
81 attachments.push_back(GL_DEPTH_ATTACHMENT);
83 attachments.push_back(GL_STENCIL_ATTACHMENT)
148 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
220 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
314 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
368 vector<deUint32> attachments = getDefaultFBDiscardAttachments(m_buffers); local
473 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
584 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
718 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
844 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
948 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
1105 vector<deUint32> attachments = getFBODiscardAttachments(m_invalidateBuffers); local
    [all...]
es3fFragmentOutputTests.cpp 24 * + non-contiguous attachments in framebuffer
245 // Check that all attachments are supported
570 vector<AttachmentData> attachments (numAttachments);
587 attachments[ndx].format = texFmt;
588 attachments[ndx].readFormat = readFmt;
589 attachments[ndx].referenceFormat = refFmt;
590 attachments[ndx].renderedData.resize(readFmt.getPixelSize()*attachmentW*attachmentH);
591 attachments[ndx].referenceData.resize(refFmt.getPixelSize()*attachmentW*attachmentH);
639 DE_ASSERT(output.location+vecNdx < (int)attachments.size());
640 attachments[output.location+vecNdx].numWrittenChannels = numScalars
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
PVRShellAPI.h 79 typedef void (GL_APIENTRY * PFNGLDISCARDFRAMEBUFFEREXT)(GLenum target, GLsizei numAttachments, const GLenum *attachments);

Completed in 1039 milliseconds

1 2 3 4 5 6 7 8