/external/mesa3d/src/gallium/state_trackers/vega/ |
D | vg_context.h | 194 static INLINE void vg_shift_rectx(VGfloat coords[4], in vg_shift_rectx() 198 coords[0] += shift; in vg_shift_rectx() 199 coords[2] -= shift; in vg_shift_rectx() 201 coords[2] = MIN2(coords[2], bounds[2]); in vg_shift_rectx() 203 if ((coords[0] + coords[2]) > (bounds[0] + bounds[2])) { in vg_shift_rectx() 204 coords[2] = (bounds[0] + bounds[2]) - coords[0]; in vg_shift_rectx() 209 static INLINE void vg_shift_recty(VGfloat coords[4], in vg_shift_recty() 213 coords[1] += shift; in vg_shift_recty() 214 coords[3] -= shift; in vg_shift_recty() 216 coords[3] = MIN2(coords[3], bounds[3]); in vg_shift_recty() [all …]
|
D | vgu.c | 44 const VGfloat *coords, in vgu_append_float_coords() argument 50 vg_float_to_datatype(path_datatype(p), common_data, coords, num_coords); in vgu_append_float_coords() 59 VGfloat coords[4]; in vguLine() local 70 coords[0] = x0; in vguLine() 71 coords[1] = y0; in vguLine() 72 coords[2] = x1; in vguLine() 73 coords[3] = y1; in vguLine() 75 vgu_append_float_coords(path, cmds, 2, coords, 4); in vguLine() 86 VGfloat *coords; in vguPolygon() local 104 coords = malloc(sizeof(VGfloat) * count * 2); in vguPolygon() [all …]
|
D | stroker.c | 71 void (*current_coords)(struct stroke_iterator *it, VGfloat *coords); 77 const VGfloat *coords; member 90 static void stroke_itr_coords(struct stroke_iterator *itr, VGfloat *coords) in stroke_itr_coords() argument 92 itr->current_coords(itr, coords); in stroke_itr_coords() 95 static void stroke_fw_itr_coords(struct stroke_iterator *itr, VGfloat *coords) in stroke_fw_itr_coords() argument 101 coords[0] = itr->coords[itr->coord_position]; in stroke_fw_itr_coords() 102 coords[1] = itr->coords[itr->coord_position + 1]; in stroke_fw_itr_coords() 105 coords[0] = itr->coords[itr->coord_position]; in stroke_fw_itr_coords() 106 coords[1] = itr->coords[itr->coord_position + 1]; in stroke_fw_itr_coords() 109 coords[0] = itr->coords[itr->coord_position]; in stroke_fw_itr_coords() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
D | vg_context.h | 194 static INLINE void vg_shift_rectx(VGfloat coords[4], in vg_shift_rectx() 198 coords[0] += shift; in vg_shift_rectx() 199 coords[2] -= shift; in vg_shift_rectx() 201 coords[2] = MIN2(coords[2], bounds[2]); in vg_shift_rectx() 203 if ((coords[0] + coords[2]) > (bounds[0] + bounds[2])) { in vg_shift_rectx() 204 coords[2] = (bounds[0] + bounds[2]) - coords[0]; in vg_shift_rectx() 209 static INLINE void vg_shift_recty(VGfloat coords[4], in vg_shift_recty() 213 coords[1] += shift; in vg_shift_recty() 214 coords[3] -= shift; in vg_shift_recty() 216 coords[3] = MIN2(coords[3], bounds[3]); in vg_shift_recty() [all …]
|
D | vgu.c | 44 const VGfloat *coords, in vgu_append_float_coords() argument 50 vg_float_to_datatype(path_datatype(p), common_data, coords, num_coords); in vgu_append_float_coords() 59 VGfloat coords[4]; in vguLine() local 70 coords[0] = x0; in vguLine() 71 coords[1] = y0; in vguLine() 72 coords[2] = x1; in vguLine() 73 coords[3] = y1; in vguLine() 75 vgu_append_float_coords(path, cmds, 2, coords, 4); in vguLine() 86 VGfloat *coords; in vguPolygon() local 104 coords = malloc(sizeof(VGfloat) * count * 2); in vguPolygon() [all …]
|
D | stroker.c | 71 void (*current_coords)(struct stroke_iterator *it, VGfloat *coords); 77 const VGfloat *coords; member 90 static void stroke_itr_coords(struct stroke_iterator *itr, VGfloat *coords) in stroke_itr_coords() argument 92 itr->current_coords(itr, coords); in stroke_itr_coords() 95 static void stroke_fw_itr_coords(struct stroke_iterator *itr, VGfloat *coords) in stroke_fw_itr_coords() argument 101 coords[0] = itr->coords[itr->coord_position]; in stroke_fw_itr_coords() 102 coords[1] = itr->coords[itr->coord_position + 1]; in stroke_fw_itr_coords() 105 coords[0] = itr->coords[itr->coord_position]; in stroke_fw_itr_coords() 106 coords[1] = itr->coords[itr->coord_position + 1]; in stroke_fw_itr_coords() 109 coords[0] = itr->coords[itr->coord_position]; in stroke_fw_itr_coords() [all …]
|
/external/eigen/bench/ |
D | sparse_setter.cpp | 47 EIGEN_DONT_INLINE Scalar* setinnerrand_eigen(const Coordinates& coords, const Values& vals); 48 EIGEN_DONT_INLINE Scalar* setrand_eigen_dynamic(const Coordinates& coords, const Values& vals); 49 EIGEN_DONT_INLINE Scalar* setrand_eigen_compact(const Coordinates& coords, const Values& vals); 50 EIGEN_DONT_INLINE Scalar* setrand_eigen_sumeq(const Coordinates& coords, const Values& vals); 51 EIGEN_DONT_INLINE Scalar* setrand_eigen_gnu_hash(const Coordinates& coords, const Values& vals); 52 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_dense(const Coordinates& coords, const Values& vals); 53 EIGEN_DONT_INLINE Scalar* setrand_eigen_google_sparse(const Coordinates& coords, const Values& vals… 54 EIGEN_DONT_INLINE Scalar* setrand_scipy(const Coordinates& coords, const Values& vals); 55 EIGEN_DONT_INLINE Scalar* setrand_ublas_mapped(const Coordinates& coords, const Values& vals); 56 EIGEN_DONT_INLINE Scalar* setrand_ublas_coord(const Coordinates& coords, const Values& vals); [all …]
|
/external/lldb/www/cpp_reference/html/ |
D | SBDefines_8h__dep__incl.map | 2 <area shape="rect" id="node3" href="$LLDB_8h.html" title="LLDB.h" alt="" coords="2029,547,2093,575"… 3 <area shape="rect" id="node5" href="$SBAddress_8h.html" title="SBAddress.h" alt="" coords="285,83,3… 4 <area shape="rect" id="node8" href="$SBFunction_8h.html" title="SBFunction.h" alt="" coords="284,16… 5 …node11" href="$SBSymbolContext_8h.html" title="SBSymbolContext.h" alt="" coords="405,238,541,266"/> 6 <area shape="rect" id="node14" href="$SBModule_8h.html" title="SBModule.h" alt="" coords="357,393,4… 7 …href="$SBSymbolContextList_8h.html" title="SBSymbolContextList.h" alt="" coords="952,315,1109,343"… 8 <area shape="rect" id="node21" href="$SBTarget_8h.html" title="SBTarget.h" alt="" coords="1373,393,… 9 <area shape="rect" id="node24" href="$SBBlock_8h.html" title="SBBlock.h" alt="" coords="863,470,945… 10 <area shape="rect" id="node28" href="$SBProcess_8h.html" title="SBProcess.h" alt="" coords="1773,47… 11 <area shape="rect" id="node31" href="$SBSymbol_8h.html" title="SBSymbol.h" alt="" coords="499,470,5… [all …]
|
D | LLDB_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 4 <area shape="rect" id="node18" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 5 <area shape="rect" id="node21" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="93… 6 <area shape="rect" id="node27" href="$SBData_8h.html" title="lldb/API/SBData.h" alt="" coords="704,… 7 …ref="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="1283,238,1469,266… 8 <area shape="rect" id="node33" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="97… 9 <area shape="rect" id="node36" href="$SBFrame_8h.html" title="lldb/API/SBFrame.h" alt="" coords="33… 10 …ode39" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="245,494,397,522"/> 11 <area shape="rect" id="node42" href="$SBTarget_8h.html" title="lldb/API/SBTarget.h" alt="" coords="… [all …]
|
D | SBSymbol_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 4 <area shape="rect" id="node42" href="$SBTarget_8h.html" title="lldb/API/SBTarget.h" alt="" coords="… 5 …"$SBInstructionList_8h.html" title="lldb/API/SBInstructionList.h" alt="" coords="1739,393,1917,421… 6 <area shape="rect" id="node18" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 7 <area shape="rect" id="node21" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="13… 8 <area shape="rect" id="node24" href="$SBSection_8h.html" title="lldb/API/SBSection.h" alt="" coords… 9 …ref="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="1048,238,1235,266… 10 …ode39" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="201,478,353,506"/> 11 <area shape="rect" id="node27" href="$SBData_8h.html" title="lldb/API/SBData.h" alt="" coords="1328… [all …]
|
D | SBBlock_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBFrame_8h.html" title="lldb/API/SBFrame.h" alt="" coords="34… 4 …node18" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="47,331,199,359"/> 5 <area shape="rect" id="node21" href="$SBTarget_8h.html" title="lldb/API/SBTarget.h" alt="" coords="… 6 <area shape="rect" id="node24" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 7 …"node46" href="$SBFileSpec_8h.html" title="lldb/API/SBFileSpec.h" alt="" coords="752,486,902,514"/> 8 …1" href="$SBBroadcaster_8h.html" title="lldb/API/SBBroadcaster.h" alt="" coords="1220,246,1388,274… 9 … href="$SBFileSpecList_8h.html" title="lldb/API/SBFileSpecList.h" alt="" coords="1130,161,1300,189… 10 …mbolContextList_8h.html" title="lldb/API/SBSymbolContext\lList.h" alt="" coords="1020,238,1196,282… 11 <area shape="rect" id="node82" href="$SBType_8h.html" title="lldb/API/SBType.h" alt="" coords="1514… [all …]
|
D | SBLineEntry_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 4 …"node49" href="$SBFileSpec_8h.html" title="lldb/API/SBFileSpec.h" alt="" coords="1304,478,1453,506… 5 <area shape="rect" id="node18" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 6 <area shape="rect" id="node21" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="24… 7 <area shape="rect" id="node24" href="$SBSection_8h.html" title="lldb/API/SBSection.h" alt="" coords… 8 …ref="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="641,238,828,266"/> 9 …ode39" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="1579,478,1731,506… 10 <area shape="rect" id="node27" href="$SBData_8h.html" title="lldb/API/SBData.h" alt="" coords="397,… 11 <area shape="rect" id="node33" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="15… [all …]
|
D | SBSymbolContextList_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 …href="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="349,83,536,111"/> 4 <area shape="rect" id="node18" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="16… 5 <area shape="rect" id="node33" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 6 …9" href="$SBCompileUnit_8h.html" title="lldb/API/SBCompileUnit.h" alt="" coords="1345,238,1516,266… 7 …"node73" href="$SBFunction_8h.html" title="lldb/API/SBFunction.h" alt="" coords="445,238,595,266"/> 8 …ode82" href="$SBLineEntry_8h.html" title="lldb/API/SBLineEntry.h" alt="" coords="1169,238,1321,266… 9 <area shape="rect" id="node88" href="$SBSymbol_8h.html" title="lldb/API/SBSymbol.h" alt="" coords="… 10 <area shape="rect" id="node21" href="$SBFrame_8h.html" title="lldb/API/SBFrame.h" alt="" coords="93… 11 …ode24" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="144,470,296,498"/> [all …]
|
D | SBTarget_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 4 …"node47" href="$SBFileSpec_8h.html" title="lldb/API/SBFileSpec.h" alt="" coords="789,409,939,437"/> 5 …2" href="$SBBroadcaster_8h.html" title="lldb/API/SBBroadcaster.h" alt="" coords="1531,169,1699,197… 6 … href="$SBFileSpecList_8h.html" title="lldb/API/SBFileSpecList.h" alt="" coords="1649,254,1820,282… 7 …mbolContextList_8h.html" title="lldb/API/SBSymbolContext\lList.h" alt="" coords="1280,161,1456,205… 8 <area shape="rect" id="node83" href="$SBType_8h.html" title="lldb/API/SBType.h" alt="" coords="5,48… 9 <area shape="rect" id="node86" href="$SBValue_8h.html" title="lldb/API/SBValue.h" alt="" coords="53… 10 …e91" href="$SBWatchpoint_8h.html" title="lldb/API/SBWatchpoint.h" alt="" coords="1773,83,1939,111"… 11 <area shape="rect" id="node18" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… [all …]
|
D | SBAddress_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 4 <area shape="rect" id="node18" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="43… 5 <area shape="rect" id="node21" href="$SBSection_8h.html" title="lldb/API/SBSection.h" alt="" coords… 6 …ref="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="641,161,828,189"/> 7 …ode36" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="513,401,665,429"/> 8 <area shape="rect" id="node24" href="$SBData_8h.html" title="lldb/API/SBData.h" alt="" coords="373,… 9 <area shape="rect" id="node30" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="66… 10 …8" href="$SBCompileUnit_8h.html" title="lldb/API/SBCompileUnit.h" alt="" coords="424,315,595,343"/> 11 …"node72" href="$SBFunction_8h.html" title="lldb/API/SBFunction.h" alt="" coords="1572,238,1721,266… [all …]
|
D | SBSymbolContext_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="21… 4 <area shape="rect" id="node30" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 5 …9" href="$SBCompileUnit_8h.html" title="lldb/API/SBCompileUnit.h" alt="" coords="607,161,777,189"/> 6 …"node73" href="$SBFunction_8h.html" title="lldb/API/SBFunction.h" alt="" coords="1672,161,1821,189… 7 …ode82" href="$SBLineEntry_8h.html" title="lldb/API/SBLineEntry.h" alt="" coords="1217,161,1369,189… 8 <area shape="rect" id="node88" href="$SBSymbol_8h.html" title="lldb/API/SBSymbol.h" alt="" coords="… 9 <area shape="rect" id="node18" href="$SBFrame_8h.html" title="lldb/API/SBFrame.h" alt="" coords="59… 10 …node21" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="93,409,245,437"/> 11 <area shape="rect" id="node24" href="$SBTarget_8h.html" title="lldb/API/SBTarget.h" alt="" coords="… [all …]
|
D | SBModule_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="20… 4 <area shape="rect" id="node18" href="$SBSection_8h.html" title="lldb/API/SBSection.h" alt="" coords… 5 …ref="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="1224,83,1411,111"… 6 …ode33" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="1773,323,1925,351… 7 <area shape="rect" id="node21" href="$SBData_8h.html" title="lldb/API/SBData.h" alt="" coords="1421… 8 <area shape="rect" id="node27" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="16… 9 …8" href="$SBCompileUnit_8h.html" title="lldb/API/SBCompileUnit.h" alt="" coords="181,238,352,266"/> 10 …"node72" href="$SBFunction_8h.html" title="lldb/API/SBFunction.h" alt="" coords="477,238,627,266"/> 11 …"node81" href="$SBLineEntry_8h.html" title="lldb/API/SBLineEntry.h" alt="" coords="5,238,157,266"/> [all …]
|
D | SBFunction_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 4 …"$SBInstructionList_8h.html" title="lldb/API/SBInstructionList.h" alt="" coords="1803,393,1981,421… 5 <area shape="rect" id="node18" href="$SBModule_8h.html" title="lldb/API/SBModule.h" alt="" coords="… 6 <area shape="rect" id="node21" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="34… 7 <area shape="rect" id="node24" href="$SBSection_8h.html" title="lldb/API/SBSection.h" alt="" coords… 8 …ref="$SBSymbolContext_8h.html" title="lldb/API/SBSymbolContext.h" alt="" coords="700,238,887,266"/> 9 …ode39" href="$SBValueList_8h.html" title="lldb/API/SBValueList.h" alt="" coords="1296,478,1448,506… 10 <area shape="rect" id="node27" href="$SBData_8h.html" title="lldb/API/SBData.h" alt="" coords="571,… 11 <area shape="rect" id="node33" href="$SBBlock_8h.html" title="lldb/API/SBBlock.h" alt="" coords="11… [all …]
|
D | SBProcess_8h__incl.map | 2 <area shape="rect" id="node3" href="$SBDefines_8h.html" title="lldb/API/SBDefines.h" alt="" coords=… 3 <area shape="rect" id="node15" href="$SBError_8h.html" title="lldb/API/SBError.h" alt="" coords="17… 4 <area shape="rect" id="node18" href="$SBTarget_8h.html" title="lldb/API/SBTarget.h" alt="" coords="… 5 <area shape="rect" id="node21" href="$SBAddress_8h.html" title="lldb/API/SBAddress.h" alt="" coords… 6 …"node51" href="$SBFileSpec_8h.html" title="lldb/API/SBFileSpec.h" alt="" coords="1155,486,1304,514… 7 …e76" href="$SBBroadcaster_8h.html" title="lldb/API/SBBroadcaster.h" alt="" coords="5,246,173,274"/> 8 … href="$SBFileSpecList_8h.html" title="lldb/API/SBFileSpecList.h" alt="" coords="108,331,279,359"/> 9 …mbolContextList_8h.html" title="lldb/API/SBSymbolContext\lList.h" alt="" coords="573,238,749,282"/> 10 <area shape="rect" id="node87" href="$SBType_8h.html" title="lldb/API/SBType.h" alt="" coords="269,… 11 <area shape="rect" id="node90" href="$SBValue_8h.html" title="lldb/API/SBValue.h" alt="" coords="31… [all …]
|
D | SBFileSpec_8h__dep__incl.map | 2 <area shape="rect" id="node3" href="$LLDB_8h.html" title="LLDB.h" alt="" coords="469,547,533,575"/> 3 <area shape="rect" id="node5" href="$SBCompileUnit_8h.html" title="SBCompileUnit.h" alt="" coords="… 4 <area shape="rect" id="node21" href="$SBLineEntry_8h.html" title="SBLineEntry.h" alt="" coords="707… 5 <area shape="rect" id="node29" href="$SBTarget_8h.html" title="SBTarget.h" alt="" coords="236,393,3… 6 <area shape="rect" id="node44" href="$SBDeclaration_8h.html" title="SBDeclaration.h" alt="" coords=… 7 <area shape="rect" id="node47" href="$SBHostOS_8h.html" title="SBHostOS.h" alt="" coords="967,238,1… 8 <area shape="rect" id="node51" href="$SBModuleSpec_8h.html" title="SBModuleSpec.h" alt="" coords="1… 9 …"node8" href="$SBSymbolContext_8h.html" title="SBSymbolContext.h" alt="" coords="409,161,545,189"/> 10 <area shape="rect" id="node11" href="$SBModule_8h.html" title="SBModule.h" alt="" coords="432,238,5… 11 …href="$SBSymbolContextList_8h.html" title="SBSymbolContextList.h" alt="" coords="200,315,357,343"/> [all …]
|
D | SBData_8h__dep__incl.map | 2 <area shape="rect" id="node3" href="$LLDB_8h.html" title="LLDB.h" alt="" coords="252,702,316,730"/> 3 <area shape="rect" id="node5" href="$SBInstruction_8h.html" title="SBInstruction.h" alt="" coords="… 4 <area shape="rect" id="node8" href="$SBSection_8h.html" title="SBSection.h" alt="" coords="297,83,3… 5 <area shape="rect" id="node46" href="$SBValue_8h.html" title="SBValue.h" alt="" coords="736,470,819… 6 <area shape="rect" id="node10" href="$SBModule_8h.html" title="SBModule.h" alt="" coords="323,161,4… 7 <area shape="rect" id="node13" href="$SBAddress_8h.html" title="SBAddress.h" alt="" coords="320,238… 8 …node19" href="$SBSymbolContext_8h.html" title="SBSymbolContext.h" alt="" coords="296,393,432,421"/> 9 <area shape="rect" id="node16" href="$SBFunction_8h.html" title="SBFunction.h" alt="" coords="195,3… 10 <area shape="rect" id="node25" href="$SBTarget_8h.html" title="SBTarget.h" alt="" coords="541,547,6… 11 <area shape="rect" id="node35" href="$SBSymbol_8h.html" title="SBSymbol.h" alt="" coords="453,625,5… [all …]
|
D | SBType_8h__dep__incl.map | 2 <area shape="rect" id="node3" href="$LLDB_8h.html" title="LLDB.h" alt="" coords="429,625,493,653"/> 3 <area shape="rect" id="node5" href="$SBTarget_8h.html" title="SBTarget.h" alt="" coords="520,161,60… 4 <area shape="rect" id="node41" href="$SBValue_8h.html" title="SBValue.h" alt="" coords="560,83,643,… 5 <area shape="rect" id="node8" href="$SBBlock_8h.html" title="SBBlock.h" alt="" coords="561,238,644,… 6 <area shape="rect" id="node28" href="$SBSymbol_8h.html" title="SBSymbol.h" alt="" coords="69,547,16… 7 <area shape="rect" id="node37" href="$SBProcess_8h.html" title="SBProcess.h" alt="" coords="640,315… 8 …node11" href="$SBSymbolContext_8h.html" title="SBSymbolContext.h" alt="" coords="280,315,416,343"/> 9 <area shape="rect" id="node14" href="$SBModule_8h.html" title="SBModule.h" alt="" coords="195,393,2… 10 …href="$SBSymbolContextList_8h.html" title="SBSymbolContextList.h" alt="" coords="461,393,619,421"/> 11 <area shape="rect" id="node17" href="$SBAddress_8h.html" title="SBAddress.h" alt="" coords="189,470… [all …]
|
/external/mesa3d/src/mesa/main/ |
D | drawtex.c | 69 _mesa_DrawTexfv(const GLfloat *coords) in _mesa_DrawTexfv() argument 72 draw_texture(ctx, coords[0], coords[1], coords[2], coords[3], coords[4]); in _mesa_DrawTexfv() 86 _mesa_DrawTexiv(const GLint *coords) in _mesa_DrawTexiv() argument 89 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexiv() 90 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexiv() 104 _mesa_DrawTexsv(const GLshort *coords) in _mesa_DrawTexsv() argument 107 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexsv() 108 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexsv() 126 _mesa_DrawTexxv(const GLfixed *coords) in _mesa_DrawTexxv() argument 130 (GLfloat) coords[0] / 65536.0f, in _mesa_DrawTexxv() [all …]
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | drawtex.c | 69 _mesa_DrawTexfv(const GLfloat *coords) in _mesa_DrawTexfv() argument 72 draw_texture(ctx, coords[0], coords[1], coords[2], coords[3], coords[4]); in _mesa_DrawTexfv() 86 _mesa_DrawTexiv(const GLint *coords) in _mesa_DrawTexiv() argument 89 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexiv() 90 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexiv() 104 _mesa_DrawTexsv(const GLshort *coords) in _mesa_DrawTexsv() argument 107 draw_texture(ctx, (GLfloat) coords[0], (GLfloat) coords[1], in _mesa_DrawTexsv() 108 (GLfloat) coords[2], (GLfloat) coords[3], (GLfloat) coords[4]); in _mesa_DrawTexsv() 126 _mesa_DrawTexxv(const GLfixed *coords) in _mesa_DrawTexxv() argument 130 (GLfloat) coords[0] / 65536.0f, in _mesa_DrawTexxv() [all …]
|
/external/chromium_org/chrome/test/chromedriver/js/ |
D | get_element_region.js | 17 var coords = element.coords.split(','); 19 if (coords.length != 4) 21 var leftX = Number(coords[0]); 22 var topY = Number(coords[1]); 23 var rightX = Number(coords[2]); 24 var bottomY = Number(coords[3]); 32 if (coords.length != 3) 34 var centerX = Number(coords[0]); 35 var centerY = Number(coords[1]); 36 var radius = Number(coords[2]); [all …]
|