HomeSort by relevance Sort by last modified time
    Searched defs:su (Results 1 - 19 of 19) sorted by null

  /external/bluetooth/bluedroid/bta/gatt/
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;
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;
  /libcore/luni/src/main/native/
libcore_net_RawSocket.cpp 67 sockunion su; local
68 memset(&su, 0, sizeof(su));
69 su.sll.sll_family = PF_PACKET;
70 su.sll.sll_protocol = htons(protocolType);
71 su.sll.sll_ifindex = if_nametoindex(ifname.c_str());
87 int err = bind(sock, &su.sa, sizeof(su));
126 sockunion su; local
127 memset(&su, 0, sizeof(su))
    [all...]
  /external/dhcpcd/
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, 0, sizeof(su))
    [all...]
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/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
Coordinate.java 134 StringUtil su = new StringUtil(); local
142 str = su.padNumZero(Math.abs(deg), 2);
143 str += "\u00b0" + su.padNumZero(Math.abs(minsDecMins), 2, MINPRECISION) + "'" + quad;
151 str = su.padNumZero(Math.abs(deg), 3);
152 str += "\u00b0" + su.padNumZero(Math.abs(minsDecMins), 2, MINPRECISION) + "'" + quad;
  /external/llvm/lib/CodeGen/
LatencyPriorityQueue.cpp 54 /// of SU, return it, otherwise return null.
55 SUnit *LatencyPriorityQueue::getSingleUnscheduledPred(SUnit *SU) {
57 for (SUnit::const_pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
72 void LatencyPriorityQueue::push(SUnit *SU) {
76 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
78 if (getSingleUnscheduledPred(I->getSUnit()) == SU)
81 NumNodesSolelyBlocking[SU->NodeNum] = NumNodesBlocking;
83 Queue.push_back(SU);
147 SUnit *su = q.pop(); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
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/
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/llvm/lib/CodeGen/SelectionDAG/
ResourcePriorityQueue.cpp 71 ResourcePriorityQueue::numberRCValPredInSU(SUnit *SU, unsigned RCId) {
73 for (SUnit::pred_iterator I = SU->Preds.begin(), E = SU->Preds.end();
108 unsigned ResourcePriorityQueue::numberRCValSuccInSU(SUnit *SU,
111 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
146 static unsigned numberCtrlDepsInSU(SUnit *SU) {
148 for (SUnit::const_succ_iterator I = SU->Succs.begin(), E = SU->Succs.end();
156 static unsigned numberCtrlPredInSU(SUnit *SU) {
650 SUnit *su = q.pop(); local
    [all...]
  /external/bluetooth/bluedroid/bta/jv/
bta_jv_act.c 976 tBT_UUID su; local
977 memset(&su, 0, sizeof(su));
980 su.len = 2;
983 su.uu.uuid16 = ntohs(u16);
984 APPL_TRACE_DEBUG1("shorten to 16 bits uuid: %x", su.uu.uuid16);
988 su.len = 4;
991 su.uu.uuid32 = ntohl(u32);
992 APPL_TRACE_DEBUG1("shorten to 32 bits uuid: %x", su.uu.uuid32);
994 return su;
1036 tBT_UUID su = shorten_sdp_uuid(&bta_jv_cb.uuid); local
    [all...]
  /external/bluetooth/bluedroid/stack/gatt/
gatt_utils.c 979 UINT8 su[LEN_UUID_128], tu[LEN_UUID_128]; local
998 gatt_convert_uuid16_to_uuid128(su, src.uu.uuid16);
999 ps = su;
    [all...]
  /external/valgrind/main/coregrind/
m_errormgr.c 241 SuppKind VG_(get_supp_kind) ( Supp* su )
243 return su->skind;
246 Char* VG_(get_supp_string) ( Supp* su )
248 return su->string;
251 void* VG_(get_supp_extra) ( Supp* su )
253 return su->extra;
257 void VG_(set_supp_kind) ( Supp* su, SuppKind skind )
259 su->skind = skind;
262 void VG_(set_supp_string) ( Supp* su, Char* string )
264 su->string = string
832 Supp *su; local
885 Supp *su; local
1598 Supp* su; local
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
function.h 488 #define current_function_static_stack_size (cfun->su->static_stack_size)
489 #define current_function_dynamic_stack_size (cfun->su->dynamic_stack_size)
490 #define current_function_pushed_stack_size (cfun->su->pushed_stack_size)
491 #define current_function_dynamic_alloc_count (cfun->su->dynamic_alloc_count)
493 (cfun->su->has_unbounded_dynamic_stack_size)
517 struct stack_usage *su;
516 struct stack_usage *su; variable in typeref:struct:stack_usage
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
function.h 488 #define current_function_static_stack_size (cfun->su->static_stack_size)
489 #define current_function_dynamic_stack_size (cfun->su->dynamic_stack_size)
490 #define current_function_pushed_stack_size (cfun->su->pushed_stack_size)
491 #define current_function_dynamic_alloc_count (cfun->su->dynamic_alloc_count)
493 (cfun->su->has_unbounded_dynamic_stack_size)
517 struct stack_usage *su;
516 struct stack_usage *su; variable in typeref:struct:stack_usage
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
function.h 488 #define current_function_static_stack_size (cfun->su->static_stack_size)
489 #define current_function_dynamic_stack_size (cfun->su->dynamic_stack_size)
490 #define current_function_pushed_stack_size (cfun->su->pushed_stack_size)
491 #define current_function_dynamic_alloc_count (cfun->su->dynamic_alloc_count)
493 (cfun->su->has_unbounded_dynamic_stack_size)
517 struct stack_usage *su;
516 struct stack_usage *su; variable in typeref:struct:stack_usage
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
function.h 488 #define current_function_static_stack_size (cfun->su->static_stack_size)
489 #define current_function_dynamic_stack_size (cfun->su->dynamic_stack_size)
490 #define current_function_pushed_stack_size (cfun->su->pushed_stack_size)
491 #define current_function_dynamic_alloc_count (cfun->su->dynamic_alloc_count)
493 (cfun->su->has_unbounded_dynamic_stack_size)
517 struct stack_usage *su;
516 struct stack_usage *su; variable in typeref:struct:stack_usage
  /frameworks/base/services/java/com/android/server/pm/
Settings.java 2560 SharedUserSetting su = null; local
    [all...]
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 553 milliseconds