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

1 2 3 4

  /external/syslinux/gpxe/src/net/infiniband/
ib_smc.c 42 * @v mad Management datagram to fill in
47 union ib_mad *mad ) {
50 /* Construct MAD */
51 memset ( mad, 0, sizeof ( *mad ) );
52 mad->hdr.base_version = IB_MGMT_BASE_VERSION;
53 mad->hdr.mgmt_class = IB_MGMT_CLASS_SUBN_LID_ROUTED;
54 mad->hdr.class_version = 1;
55 mad->hdr.method = IB_MGMT_METHOD_GET;
56 mad->hdr.attr_id = htons ( IB_SMP_ATTR_PORT_INFO )
133 union ib_mad mad; local
    [all...]
ib_sma.c 46 * @v mad Received MAD
51 union ib_mad *mad,
53 struct ib_node_info *node_info = &mad->smp.smp_data.node_info;
70 mad->hdr.method = IB_MGMT_METHOD_GET_RESP;
71 if ( ( rc = ib_mi_send ( ibdev, mi, mad, av ) ) != 0 ) {
83 * @v mad Received MAD
88 union ib_mad *mad,
90 struct ib_node_desc *node_desc = &mad->smp.smp_data.node_desc
    [all...]
ib_mi.c 60 /** TID to use for next MAD */
64 * Handle received MAD
68 * @v mad Received MAD
74 union ib_mad *mad,
76 struct ib_mad_hdr *hdr = &mad->hdr;
82 if ( memcmp ( &hdr->tid, &madx->mad.hdr.tid,
86 madx->op->complete ( ibdev, mi, madx, 0, mad, av );
98 agent->handle ( ibdev, mi, mad, av );
123 union ib_mad *mad; local
222 memcpy ( iob_put ( iobuf, sizeof ( *mad ) ), mad, sizeof ( *mad ) ); local
    [all...]
ib_cm.c 55 union ib_mad mad; local
57 &mad.cm.cm_data.ready_to_use;
61 memset ( &mad, 0, sizeof ( mad ) );
62 mad.hdr.mgmt_class = IB_MGMT_CLASS_CM;
63 mad.hdr.class_version = IB_CM_CLASS_VERSION;
64 mad.hdr.method = IB_MGMT_METHOD_SEND;
65 mad.hdr.attr_id = htons ( IB_CM_ATTR_READY_TO_USE );
68 if ( ( rc = ib_mi_send ( ibdev, mi, &mad, av ) ) != 0 ){
82 * @v mad Received MA
254 union ib_mad mad; local
    [all...]
ib_mcast.c 37 * Generate multicast membership MAD
42 * @v mad MAD to fill in
45 int join, union ib_mad *mad ) {
46 struct ib_mad_sa *sa = &mad->sa;
72 * @v mad Received MAD (or NULL on error)
78 int rc, union ib_mad *mad,
84 &mad->sa.sa_data.mc_member_record;
89 if ( ( rc == 0 ) && ( mad->hdr.status != htons ( IB_MGMT_STATUS_OK ) )
144 union ib_mad mad; local
195 union ib_mad mad; local
    [all...]
ib_pathrec.c 43 * @v mad Received MAD (or NULL on error)
49 int rc, union ib_mad *mad,
53 struct ib_path_record *pathrec = &mad->sa.sa_data.path_record;
56 if ( ( rc == 0 ) && ( mad->hdr.status != htons ( IB_MGMT_STATUS_OK ) ))
67 /* Extract values from MAD */
103 union ib_mad mad; local
104 struct ib_mad_sa *sa = &mad.sa;
128 path->madx = ib_create_madx ( ibdev, ibdev->gsi, &mad, NULL,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
rm7000.s 2 mad $4,$5
mips4650.s 5 mad $4,$5
mips4650.d 9 0+0000 <stuff> mad a0,a1
rm7000.d 11 * 4: 70850000 * mad \$4,\$5
  /external/syslinux/gpxe/src/include/gpxe/
ib_smc.h 15 union ib_mad *mad );
ib_mcast.h 30 * @v mad Response MAD (or NULL on error)
34 union ib_mad *mad );
43 int rc, union ib_mad *mad ) );
ib_mi.h 28 /** Handle MAD
32 * @v mad Received MAD
38 union ib_mad *mad,
56 * @v mad Received MAD (or NULL on error)
65 int rc, union ib_mad *mad,
79 /** MAD being sent */
80 union ib_mad mad; member in struct:ib_mad_transaction
122 union ib_mad *mad, struct ib_address_vector *av )
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestMad.rs 28 return mad(inMultiplicand1, inMultiplicand2, inOffset);
34 return mad(inMultiplicand1, inMultiplicand2, inOffset);
40 return mad(inMultiplicand1, inMultiplicand2, inOffset);
46 return mad(inMultiplicand1, inMultiplicand2, inOffset);
52 return mad(inMultiplicand1, inMultiplicand2, inOffset);
58 return mad(inMultiplicand1, inMultiplicand2, inOffset);
64 return mad(inMultiplicand1, inMultiplicand2, inOffset);
70 return mad(inMultiplicand1, inMultiplicand2, inOffset);
  /external/libchrome/base/trace_event/
process_memory_dump.cc 178 std::unique_ptr<MemoryAllocatorDump> mad) {
182 !IsMemoryAllocatorDumpNameWhitelisted(mad->absolute_name())) {
187 std::make_pair(mad->absolute_name(), std::move(mad)));
206 MemoryAllocatorDump* mad = GetAllocatorDump(absolute_name); local
207 return mad ? mad : CreateAllocatorDump(absolute_name);
218 MemoryAllocatorDump* mad = GetSharedGlobalAllocatorDump(guid);
219 if (mad) {
222 mad->clear_flags(MemoryAllocatorDump::Flags::WEAK)
    [all...]
memory_allocator_dump_unittest.cc 108 std::unique_ptr<MemoryAllocatorDump> mad(
110 ASSERT_EQ("42", mad->guid().ToString());
112 // If the dumper does not provide a Guid, the MAD will make one up on the
115 mad.reset(new MemoryAllocatorDump("bar", nullptr));
116 const MemoryAllocatorDumpGuid guid_bar = mad->guid();
119 ASSERT_EQ(guid_bar, mad->guid());
121 mad.reset(new MemoryAllocatorDump("bar", nullptr));
122 const MemoryAllocatorDumpGuid guid_bar_2 = mad->guid();
125 mad.reset(new MemoryAllocatorDump("baz", nullptr));
126 const MemoryAllocatorDumpGuid guid_baz = mad->guid()
    [all...]
trace_event_memory_overhead.cc 144 MemoryAllocatorDump* mad = pmd->CreateAllocatorDump(dump_name); local
145 mad->AddScalar(MemoryAllocatorDump::kNameSize,
148 mad->AddScalar("resident_size", MemoryAllocatorDump::kUnitsBytes,
150 mad->AddScalar(MemoryAllocatorDump::kNameObjectCount,
  /external/skia/src/jumper/
SkJumper_stages.cpp 319 BLEND_MODE(srcover) { return mad(d, inv(sa), s); }
320 BLEND_MODE(dstover) { return mad(s, inv(da), d); }
336 a = mad(da, inv(a), a); \
496 r = mad(dr, inv(a), r*255.0f);
497 g = mad(dg, inv(a), g*255.0f);
498 b = mad(db, inv(a), b*255.0f);
499 a = mad(da, inv(a), a*255.0f);
581 auto hi = mad(s*s, mad(s, 0.3000f, 0.6975f), 0.0025f);
610 auto hi = mad(t, mad(t, -0.0024542345f, 0.013832027f), c
    [all...]
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
fisheye.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
  /frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
fisheye.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
fisheye.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
fisheye_approx.rsh 48 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
54 const float2 new_coord = mad(coord, scalar, center);
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
fisheye_approx_f.rsh 50 const float2 coord = mad(inCoord, inv_dimensions, neg_center);
56 const float2 new_coord = mad(coord, scalar, center);

Completed in 719 milliseconds

1 2 3 4