| /xsrc/external/bsd/libuuid_ul/dist/ |
| H A D | pack.c | 38 void uuid_pack(const struct uuid *uu, uuid_t ptr) argument 43 tmp = uu->time_low; 52 tmp = uu->time_mid; 57 tmp = uu->time_hi_and_version; 62 tmp = uu->clock_seq; 67 memcpy(out+10, uu->node, 6);
|
| H A D | unpack.c | 38 void uuid_unpack(const uuid_t in, struct uuid *uu) argument 47 uu->time_low = tmp; 51 uu->time_mid = tmp; 55 uu->time_hi_and_version = tmp; 59 uu->clock_seq = tmp; 61 memcpy(uu->node, ptr, 6);
|
| H A D | unparse.c | 44 static void uuid_unparse_x(const uuid_t uu, char *out, const char *fmt) argument 48 uuid_unpack(uu, &uuid); 56 void uuid_unparse(const uuid_t uu, char *out) argument 58 uuid_unparse_x(uu, out, FMT_DEFAULT);
|
| H A D | uuidP.h | 60 void uuid_pack(const struct uuid *uu, uuid_t ptr); 61 void uuid_unpack(const uuid_t in, struct uuid *uu);
|
| H A D | uuid.h | 81 extern void uuid_clear(uuid_t uu); 95 extern int uuid_is_null(const uuid_t uu); 98 extern int uuid_parse(const char *in, uuid_t uu); 101 extern void uuid_unparse(const uuid_t uu, char *out); 102 extern void uuid_unparse_lower(const uuid_t uu, char *out); 103 extern void uuid_unparse_upper(const uuid_t uu, char *out); 106 extern time_t uuid_time(const uuid_t uu, struct timeval *ret_tv); 107 extern int uuid_type(const uuid_t uu); 108 extern int uuid_variant(const uuid_t uu);
|
| H A D | parse.c | 42 int uuid_parse(const char *in, uuid_t uu) argument 77 uuid_pack(&uuid, uu);
|
| H A D | gen_uuid.c | 309 struct uuid uu; local in function:__uuid_generate_time 325 ret = get_clock(&clock_mid, &uu.time_low, &uu.clock_seq, num); 326 uu.clock_seq |= 0x8000; 327 uu.time_mid = (uint16_t) clock_mid; 328 uu.time_hi_and_version = ((clock_mid >> 16) & 0x0FFF) | 0x1000; 329 memcpy(uu.node, node_id, 6); 330 uuid_pack(&uu, out); 359 struct uuid uu; local in function:__uuid_generate_random 369 uuid_unpack(buf, &uu); [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/vbo/ |
| H A D | vbo_exec_eval.c | 132 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord1f 138 _math_horner_bezier_curve(map->Points, &data[0].f, uu, 152 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord1f 157 _math_horner_bezier_curve(map->Points, vertex, uu, 178 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord2f 187 uu, vv, 201 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord2f 211 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv, 236 _math_horner_bezier_surf(map->Points, vertex, uu, vv,
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/vbo/ |
| H A D | vbo_exec_eval.c | 134 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord1f 140 _math_horner_bezier_curve(map->Points, &data[0].f, uu, 154 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord1f 159 _math_horner_bezier_curve(map->Points, vertex, uu, 181 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord2f 190 uu, vv, 204 GLfloat uu = (u - map->u1) * map->du; local in function:vbo_exec_do_EvalCoord2f 214 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv, 239 _math_horner_bezier_surf(map->Points, vertex, uu, vv,
|
| /xsrc/external/mit/MesaLib.old/dist/src/imgui/ |
| H A D | imgui_widgets.cpp | 4184 float uu, vv, ww; local in function:ImGui::ColorPicker4 4185 ImTriangleBarycentricCoords(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated, uu, vv, ww); 4187 S = ImClamp(uu / V, 0.0001f, 1.0f);
|
| /xsrc/external/mit/MesaLib/dist/src/imgui/ |
| H A D | imgui_widgets.cpp | 4184 float uu, vv, ww; local in function:ImGui::ColorPicker4 4185 ImTriangleBarycentricCoords(triangle_pa, triangle_pb, triangle_pc, current_off_unrotated, uu, vv, ww); 4187 S = ImClamp(uu / V, 0.0001f, 1.0f);
|