/external/valgrind/main/include/ |
H A D | pub_tool_errormgr.h | 124 SuppKind VG_(get_supp_kind) ( Supp* su ); 125 HChar* VG_(get_supp_string) ( Supp* su ); 126 void* VG_(get_supp_extra) ( Supp* su ); 129 void VG_(set_supp_kind) ( Supp* su, SuppKind suppkind ); 131 void VG_(set_supp_string) ( Supp* su, HChar* string ); 132 void VG_(set_supp_extra) ( Supp* su, void* extra );
|
H A D | pub_tool_tooliface.h | 316 Bool (*recognised_suppression)(const HChar* name, Supp* su), 324 Int* lineno, Supp* su), 329 Bool (*error_matches_suppression)(Error* err, Supp* su), 351 Bool (*print_extra_suppression_use)(Supp* su, 355 // is suppressed by su. update_extra_suppression_use typically 359 void (*update_extra_suppression_use)(Error* err, Supp* su)
|
/external/dhcpcd/ |
H A D | lpf.c | 76 } su; local 86 memset(&su, 0, sizeof(su)); 87 su.sll.sll_family = PF_PACKET; 88 su.sll.sll_protocol = htons(protocol); 89 if (!(su.sll.sll_ifindex = if_nametoindex(iface->name))) { 115 if (bind(s, &su.sa, sizeof(su)) == -1) 139 } su; local 142 memset(&su, [all...] |
H A D | if-bsd.c | 200 } su; local 204 char buffer[sizeof(su) * 4]; 216 memset (&su, 0, sizeof(su)); \ 217 su.sin.sin_family = AF_INET; \ 218 su.sin.sin_len = sizeof(su.sin); \ 219 memcpy (&su.sin.sin_addr, _a, sizeof(su.sin.sin_addr)); \ 220 ADDSU(su); \ [all...] |
/external/valgrind/main/exp-sgcheck/ |
H A D | pc_common.h | 54 Bool pc_is_recognised_suppression ( const HChar* name, Supp *su ); 56 SizeT* nBufp, Int* lineno, Supp* su ); 57 Bool pc_error_matches_suppression (Error* err, Supp* su); 61 Bool pc_print_extra_suppression_use ( Supp* su, 63 void pc_update_extra_suppression_use (Error* err, Supp* su);
|
H A D | pc_common.c | 723 Bool pc_is_recognised_suppression ( const HChar* name, Supp *su ) 734 VG_(set_supp_kind)(su, skind); 739 SizeT* nBufp, Int* lineno, Supp* su ) 742 if (VG_(get_supp_kind)(su) == XS_SysParam) { 745 VG_(set_supp_string)(su, VG_(strdup)("pc.common.presi.1", *bufpp)); 750 Bool pc_error_matches_suppression (Error* err, Supp* su) argument 753 switch (VG_(get_supp_kind)(su)) { 761 VG_(get_supp_kind)(su)); 796 Bool pc_print_extra_suppression_use ( Supp* su, argument 802 void pc_update_extra_suppression_use (Error* err, Supp* su) argument [all...] |
/external/deqp/framework/delibs/decpp/ |
H A D | deSTLUtil.cpp | 68 set<int> su = set_union(s1, s2); local 69 DE_TEST_ASSERT(contains(su, 2)); 70 DE_TEST_ASSERT(contains(su, 3)); 71 DE_TEST_ASSERT(contains(su, 5));
|
/external/valgrind/main/helgrind/ |
H A D | hg_errors.h | 42 Bool HG_(recognised_suppression) ( const HChar* name, Supp *su ); 44 Int* lineno, Supp* su ); 45 Bool HG_(error_matches_suppression) ( Error* err, Supp* su ); 49 Bool HG_(print_extra_suppression_use) ( Supp* su, 51 void HG_(update_extra_suppression_use) ( Error* err, Supp* su );
|
H A D | hg_errors.c | 1259 Bool HG_(recognised_suppression) ( const HChar* name, Supp *su ) 1263 VG_(set_supp_kind)(su, (_xskind)); \ 1279 Int* lineno, Supp* su ) 1286 Bool HG_(error_matches_suppression) ( Error* err, Supp* su ) 1288 switch (VG_(get_supp_kind)(su)) { 1308 Bool HG_(print_extra_suppression_use) ( Supp* su, argument 1315 void HG_(update_extra_suppression_use) ( Error* err, Supp* su )
|
/external/valgrind/main/coregrind/ |
H A D | m_errormgr.c | 246 SuppKind VG_(get_supp_kind) ( Supp* su ) 248 return su->skind; 251 HChar* VG_(get_supp_string) ( Supp* su ) 253 return su->string; 256 void* VG_(get_supp_extra) ( Supp* su ) 258 return su->extra; 262 void VG_(set_supp_kind) ( Supp* su, SuppKind skind ) argument 264 su->skind = skind; 267 void VG_(set_supp_string) ( Supp* su, HChar* string ) argument 269 su 272 set_supp_extra( Supp* su, void* extra ) argument 846 Supp *su; local 899 Supp *su; local 1611 supp_matches_callers(IPtoFunOrObjCompleter* ip2fo, Supp* su) argument 1635 supp_matches_error(Supp* su, Error* err) argument 1662 Supp* su; local [all...] |
/external/llvm/lib/Target/Hexagon/ |
H A D | HexagonMachineScheduler.cpp | 28 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) { 30 if (SUnits[su].getInstr()->isCall()) 31 LastSequentialCall = &(SUnits[su]); 33 else if (SUnits[su].getInstr()->isCompare() && LastSequentialCall) 34 SUnits[su].addPred(SDep(LastSequentialCall, SDep::Barrier)); 167 for (unsigned su = 0, e = SUnits.size(); su != e; ++su) [all...] |
/external/llvm/include/llvm/CodeGen/ |
H A D | ScheduleDAGInstrs.h | 38 VReg2SUnit(unsigned reg, SUnit *su): VirtReg(reg), SU(su) {} argument 52 PhysRegSUOper(SUnit *su, int op, unsigned R): SU(su), OpIdx(op), Reg(R) {} argument
|
/external/bluetooth/bluedroid/bta/gatt/ |
H A D | bta_gatts_utils.c | 195 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128]; local 214 bta_gatt_convert_uuid16_to_uuid128(su, src.uu.uuid16); 215 ps = su;
|
H A D | bta_gattc_utils.c | 75 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128]; local 97 bta_gatt_convert_uuid16_to_uuid128(su, p_src->uu.uuid16); 98 ps = su;
|
/external/llvm/lib/CodeGen/ |
H A D | LatencyPriorityQueue.cpp | 148 SUnit *su = q.pop(); local 149 dbgs() << "Height " << su->getHeight() << ": "; 150 su->dump(DAG);
|
H A D | PostRASchedulerList.cpp | 389 DEBUG(for (unsigned su = 0, e = SUnits.size(); su != e; ++su) 390 SUnits[su].dumpAll(this));
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
H A D | st_atom_texture.c | 395 GLuint su; local 399 for (su = 0; su < ctx->Const.MaxTextureCoordUnits; su++) { 400 if (fprog->Base.SamplersUsed & (1 << su)) { 401 const GLuint texUnit = fprog->Base.SamplerUnits[su];
|
/external/mesa3d/src/mesa/state_tracker/ |
H A D | st_atom_texture.c | 395 GLuint su; local 399 for (su = 0; su < ctx->Const.MaxTextureCoordUnits; su++) { 400 if (fprog->Base.SamplersUsed & (1 << su)) { 401 const GLuint texUnit = fprog->Base.SamplerUnits[su];
|
/external/valgrind/main/memcheck/ |
H A D | mc_errors.c | 1192 Bool MC_(is_recognised_suppression) ( const HChar* name, Supp* su ) 1219 VG_(set_supp_kind)(su, skind); 1238 SizeT* nBufp, Int* lineno, Supp *su ) 1243 if (VG_(get_supp_kind)(su) == ParamSupp) { 1246 VG_(set_supp_string)(su, VG_(strdup)("mc.resi.1", *bufpp)); 1247 } else if (VG_(get_supp_kind)(su) == LeakSupp) { 1255 VG_(set_supp_extra)(su, lse); // By default, all kinds will match. 1272 Bool MC_(error_matches_suppression) ( Error* err, Supp* su ) 1278 switch (VG_(get_supp_kind)(su)) { 1282 VG_(get_supp_string)(su))); 1408 print_extra_suppression_use( Supp *su, HChar *buf, Int nBuf ) argument 1427 update_extra_suppression_use( Error* err, Supp* su) argument [all...] |
H A D | mc_include.h | 402 Bool MC_(is_recognised_suppression) ( const HChar* name, Supp* su ); 405 SizeT* nBuf, Int* lineno, Supp *su ); 407 Bool MC_(error_matches_suppression) ( Error* err, Supp* su ); 411 Bool MC_(print_extra_suppression_use) ( Supp* su, 413 void MC_(update_extra_suppression_use) ( Error* err, Supp* su );
|
/external/chromium_org/third_party/skia/experimental/webtry/setup/ |
H A D | webtry_setup.sh | 14 sudo su webtry -c /home/webtry/continue_install
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/ |
H A D | asciidoc.conf | 11 (?su)[\\]?(?P<name>linkperf):(?P<target>\S*?)\[(?P<attrlist>.*?)\]=
|
/external/skia/experimental/webtry/setup/ |
H A D | webtry_setup.sh | 14 sudo su webtry -c /home/webtry/continue_install
|
/external/netcat/ |
H A D | netcat.c | 59 #define SUN_LEN(su) \ 60 (sizeof(*(su)) - sizeof((su)->sun_path) + strlen((su)->sun_path))
|
/external/bluetooth/bluedroid/bta/jv/ |
H A D | bta_jv_act.c | 1013 tBT_UUID su; local 1014 memset(&su, 0, sizeof(su)); 1017 su.len = 2; 1020 su.uu.uuid16 = ntohs(u16); 1021 APPL_TRACE_DEBUG("shorten to 16 bits uuid: %x", su.uu.uuid16); 1025 su.len = 4; 1028 su.uu.uuid32 = ntohl(u32); 1029 APPL_TRACE_DEBUG("shorten to 32 bits uuid: %x", su.uu.uuid32); 1031 return su; 1073 tBT_UUID su = shorten_sdp_uuid(&bta_jv_cb.uuid); local [all...] |