Home
last modified time | relevance | path

Searched refs:firsttime (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_info.c56 static boolean firsttime = 1; in tgsi_get_opcode_info() local
62 if (firsttime) { in tgsi_get_opcode_info()
64 firsttime = 0; in tgsi_get_opcode_info()
/third_party/mesa3d/src/gallium/winsys/sw/xlib/
Dxlib_sw_winsys.c302 static bool firsttime = true; in xlib_sw_display() local
308 if (firsttime) { in xlib_sw_display()
310 firsttime = 0; in xlib_sw_display()
/third_party/node/deps/openssl/openssl/crypto/
Dpunycode.c44 unsigned int firsttime) in adapt() argument
48 delta = (firsttime) ? delta / damp : delta / 2; in adapt()
/third_party/openssl/crypto/
Dpunycode.c44 unsigned int firsttime) in adapt() argument
48 delta = (firsttime) ? delta / damp : delta / 2; in adapt()
/third_party/icu/icu4c/source/test/intltest/
Dpunyref.cpp111 punycode_uint delta, punycode_uint numpoints, int firsttime ) in adapt() argument
115 delta = firsttime ? delta / damp : delta >> 1; in adapt()
/third_party/python/Modules/
Dgetaddrinfo.c249 static int firsttime = 1; in getaddrinfo() local
251 if (firsttime) { in getaddrinfo()
258 firsttime = 0; in getaddrinfo()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DPunycodeReference.java121 private static int adapt(int delta, int numpoints, boolean firsttime ){ in adapt() argument
124 delta = (firsttime==true) ? delta / damp : delta >> 1; in adapt()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/stringprep/
DPunycodeReference.java124 private static int adapt(int delta, int numpoints, boolean firsttime ){ in adapt() argument
127 delta = (firsttime==true) ? delta / damp : delta >> 1; in adapt()
/third_party/mesa3d/src/util/perf/
Du_trace.c364 static bool firsttime = true; in get_tracefile() local
366 if (firsttime) { in get_tracefile()
374 firsttime = false; in get_tracefile()
/third_party/mesa3d/src/gallium/frontends/glx/xlib/
Dglx_api.c1178 static boolean firsttime = 1, no_rast = 0; in glXMakeContextCurrent() local
1180 if (firsttime) { in glXMakeContextCurrent()
1182 firsttime = 0; in glXMakeContextCurrent()
1416 static boolean firsttime = 1, no_rast = 0; in glXSwapBuffers() local
1418 if (firsttime) { in glXSwapBuffers()
1420 firsttime = 0; in glXSwapBuffers()
/third_party/gstreamer/gstplugins_base/ext/ogg/
Dgstoggmux.c768 guint64 firsttime, secondtime; in gst_ogg_mux_compare_pads() local
778 firsttime = GST_BUFFER_TIMESTAMP (first->buffer); in gst_ogg_mux_compare_pads()
779 if (firsttime == GST_CLOCK_TIME_NONE) in gst_ogg_mux_compare_pads()
788 if (secondtime < firsttime) in gst_ogg_mux_compare_pads()
791 else if (secondtime > firsttime) in gst_ogg_mux_compare_pads()
/third_party/mesa3d/src/gallium/winsys/svga/drm/
Dvmw_screen_ioctl.c522 static boolean firsttime = TRUE; in vmw_ioctl_command() local
525 if (firsttime) { in vmw_ioctl_command()
533 firsttime = FALSE; in vmw_ioctl_command()
/third_party/node/deps/ada/
Dada.cpp7986 static constexpr int32_t adapt(int32_t d, int32_t n, bool firsttime) { in adapt() argument
7987 if (firsttime) { in adapt()