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

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/list_update_map_/
find_fn_imps.hpp 55 entry_pointer p_l = m_p_l; local
56 while (p_l->m_p_next != NULL)
58 entry_pointer p_next = p_l->m_p_next;
63 p_l->m_p_next = p_next->m_p_next;
71 p_l = p_next;
82 apply_update(entry_pointer p_l, type_to_type<Metadata>)
83 { return s_update_policy(p_l->m_update_metadata); }
insert_fn_imps.hpp 49 entry_pointer p_l = find_imp(PB_DS_V2F(r_val)); local
51 if (p_l != NULL)
54 return std::make_pair(point_iterator(&p_l->m_value), false);
59 p_l = allocate_new_entry(r_val, traits_base::m_no_throw_copies_indicator);
60 p_l->m_p_next = m_p_l;
61 m_p_l = p_l;
63 return std::make_pair(point_iterator(&p_l->m_value), true);
71 entry_pointer p_l = s_entry_allocator.allocate(1); local
72 cond_dealtor_t cond(p_l);
73 new (const_cast<void* >(static_cast<const void* >(&p_l->m_value))
87 entry_pointer p_l = s_entry_allocator.allocate(1); local
    [all...]
trace_fn_imps.hpp 49 const_entry_pointer p_l = m_p_l; local
50 while (p_l != NULL)
52 std::cerr << PB_DS_V2F(p_l->m_value) << std::endl;
53 p_l = p_l->m_p_next;
erase_fn_imps.hpp 58 entry_pointer p_l = m_p_l; local
59 while (p_l->m_p_next != NULL)
60 if (s_eq_fn(r_key, PB_DS_V2F(p_l->m_p_next->m_value)))
62 erase_next(p_l);
66 p_l = p_l->m_p_next;
97 entry_pointer p_l = m_p_l;
98 while (p_l->m_p_next != NULL)
100 if (pred(p_l->m_p_next->m_value))
103 erase_next(p_l);
    [all...]
constructor_destructor_fn_imps.hpp 94 entry_pointer p_l = allocate_new_entry(*it, local
97 p_l->m_p_next = m_p_l;
98 m_p_l = p_l;
127 entry_pointer p_l = m_p_l; local
128 while (p_l != NULL)
130 entry_pointer p_next_l = p_l->m_p_next;
131 actual_erase_entry(p_l);
132 p_l = p_next_l;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/splay_tree_/
erase_fn_imps.hpp 117 node_pointer p_l = p_nd->m_p_left; local
124 base_type::m_p_head->m_p_parent = p_l;
125 if (p_l != NULL)
126 p_l->m_p_parent = base_type::m_p_head;
141 p_target_r->m_p_left = p_l;
142 if (p_l != NULL)
143 p_l->m_p_parent = p_target_r;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/rb_tree_map_/
split_join_fn_imps.hpp 152 find_join_pos_right(node_pointer p_l, size_type h_l, size_type h_r)
162 if (p_l->m_red == false)
168 p_l_parent = p_l;
169 p_l = p_l->m_p_right;
172 if (!is_effectively_black(p_l))
174 p_l_parent = p_l;
175 p_l = p_l->m_p_right;
178 _GLIBCXX_DEBUG_ASSERT(is_effectively_black(p_l));
280 node_pointer p_l = p_nd->m_p_left; local
    [all...]
  /bionic/libm/src/
e_pow.c 100 double z,ax,z_h,z_l,p_h,p_l; local
244 p_l = v-(p_h-u);
246 z_l = cp_l*p_h+p_l*cp+dp_l[k];
257 p_l = (y-y1)*t1+y*t2;
259 z = p_l+p_h;
265 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
271 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */
275 * compute 2**(p_h+p_l)
289 t = p_l+p_h;
292 v = (p_l-(t-p_h))*lg2+t*lg2_l
    [all...]
e_powf.c 59 float z,ax,z_h,z_l,p_h,p_l; local
189 p_l = v-(p_h-u);
191 z_l = cp_l*p_h+p_l*cp+dp_l[k];
203 p_l = (y-y1)*t1+y*t2;
205 z = p_l+p_h;
210 if(p_l+ovt>z-p_h) return sn*huge*huge; /* overflow */
215 if(p_l<=z-p_h) return sn*tiny*tiny; /* underflow */
218 * compute 2**(p_h+p_l)
231 t = p_l+p_h;
235 v = (p_l-(t-p_h))*lg2+t*lg2_l
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
e_pow.h 103 double z,ax,z_h,z_l,p_h,p_l; local
238 p_l = v-(p_h-u);
240 z_l = cp_l*p_h+p_l*cp+dp_l[k];
255 p_l = (y-y1)*t1+y*t2;
257 z = p_l+p_h;
263 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
269 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */
273 * compute 2**(p_h+p_l)
287 t = p_l+p_h;
290 v = (p_l-(t-p_h))*lg2+t*lg2_l
    [all...]
  /external/fdlibm/
e_pow.c 107 double z,ax,z_h,z_l,p_h,p_l; local
248 p_l = v-(p_h-u);
250 z_l = cp_l*p_h+p_l*cp+dp_l[k];
261 p_l = (y-y1)*t1+y*t2;
263 z = p_l+p_h;
270 if(p_l+ovt>z-p_h) return s*huge*huge; /* overflow */
276 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */
280 * compute 2**(p_h+p_l)
294 t = p_l+p_h;
297 v = (p_l-(t-p_h))*lg2+t*lg2_l
    [all...]

Completed in 895 milliseconds