HomeSort by relevance Sort by last modified time
    Searched refs:spin (Results 1 - 25 of 29) sorted by null

1 2

  /external/valgrind/main/none/tests/x86/
yield.c 16 static int spin; variable
29 spin++;
46 // (ie. we're in a spin-wait loop)
77 printf("spin=%d rep_nop=%d rep_nop:spin ratio: %g\n",
78 spin, rep_nop, (float)rep_nop / spin);
80 if (spin > rep_nop)
83 printf("FAIL spin=%d rep_nop=%d rep_nop:spin ratio: %g\n",
    [all...]
  /external/fio/lib/
lfsr.c 84 static inline void __lfsr_next(struct fio_lfsr *fl, unsigned int spin)
90 switch (spin) {
115 * b. Check if we have a spin value that produces a repeating subsequence.
117 * be > 0. If we do have such a spin:
120 * ii. If it reaches zero, add "+1" to the spin and reset the cycle_length
134 __lfsr_next(fl, fl->spin + 1);
137 __lfsr_next(fl, fl->spin);
177 * [1]: ((2^n - 1) * i) % (spin + 1) == 0,
178 * where "n" is LFSR's bits and "i" any number within the range [1,spin]
180 * It is important to know beforehand if a spin can cause a repetition of
    [all...]
lfsr.h 22 unsigned int spin; member in struct:fio_lfsr
27 unsigned long seed, unsigned int spin);
  /external/chromium_org/chrome/browser/resources/chromeos/
choose_mobile_network.css 13 -webkit-animation-name: spin;
32 @-webkit-keyframes spin {
  /external/fio/t/
lfsr-test.c 14 printf("Usage: lfsr-test 0x<numbers> [seed] [spin] [verify]\n");
18 "spin: how many iterations before we produce a number\n"
31 unsigned int spin = 0; local
43 case 4: spin = atoi(argv[3]);
58 r = lfsr_init(fl, numbers, seed, spin);
71 printf("Spin is %u\n", fl->spin);
  /external/chromium_org/third_party/WebKit/Source/core/css/
themeMac.css 24 input::-webkit-inner-spin-button {
themeInputMultipleFields.css 86 input[type="date" i]::-webkit-inner-spin-button,
87 input[type="datetime" i]::-webkit-inner-spin-button,
88 input[type="datetime-local" i]::-webkit-inner-spin-button,
89 input[type="month" i]::-webkit-inner-spin-button,
90 input[type="time" i]::-webkit-inner-spin-button,
91 input[type="week" i]::-webkit-inner-spin-button {
html.css 489 input::-webkit-inner-spin-button {
490 -webkit-appearance: inner-spin-button;
501 input:enabled:read-write:-webkit-any(:focus,:hover)::-webkit-inner-spin-button {
733 input[type="date" i]:disabled::-webkit-inner-spin-button,
735 input[type="datetime-local" i]:disabled::-webkit-inner-spin-button,
737 input[type="month" i]:disabled::-webkit-inner-spin-button,
739 input[type="week" i]:disabled::-webkit-inner-spin-button,
742 input[type="date" i][readonly]::-webkit-inner-spin-button,
744 input[type="datetime-local" i][readonly]::-webkit-inner-spin-button,
746 input[type="month" i][readonly]::-webkit-inner-spin-button
    [all...]
themeWin.css 99 input::-webkit-outer-spin-button {
  /hardware/intel/img/libdrm/libdrm/
xf86drm.h 474 /* Simple spin locks */
475 #define DRM_SPINLOCK(spin,val) \
479 DRM_CAS(spin,0,val,__ret); \
480 if (__ret) while ((spin)->lock); \
484 #define DRM_SPINLOCK_TAKE(spin,val) \
489 cur = (*spin).lock; \
490 DRM_CAS(spin,cur,val,__ret); \
494 #define DRM_SPINLOCK_COUNT(spin,val,count,__ret) \
499 DRM_CAS(spin,0,val,__ret); \
500 if (__ret) for (;__i < count && (spin)->lock; __i++);
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_spin_init.c 5 * This translation unit implements spin lock primitives.
72 #error ERROR [__FILE__, line __LINE__]: Process shared spin locks are not supported yet.
Makefile 75 spin.obj \
511 spin.obj: spin.c $(SPIN_SRCS) $(INCL)
  /external/fio/
goptions.c 32 GtkWidget *spin; member in struct:gopt_int
47 GtkWidget *spin; member in struct:gopt_str_val
457 static void gopt_int_changed(GtkSpinButton *spin, gpointer data)
466 adj = gtk_spin_button_get_adjustment(spin);
478 cur_val = gtk_spin_button_get_value(GTK_SPIN_BUTTON(i_inv->spin));
480 g_signal_handler_block(G_OBJECT(i_inv->spin), i_inv->gopt.sig_handler);
481 gtk_spin_button_set_value(GTK_SPIN_BUTTON(i_inv->spin), cur_val);
482 g_signal_handler_unblock(G_OBJECT(i_inv->spin), i_inv->gopt.sig_handler);
496 gtk_spin_button_set_value(GTK_SPIN_BUTTON(i->spin), p);
534 i->spin = gtk_spin_button_new_with_range(o->minval, maxval, interval)
    [all...]
gfio.c 1122 GtkWidget *hbox, *spin, *entry, *spin_int; local
1155 spin = create_spinbutton(hbox, 10, 1000000, gfio_graph_limit);
1205 gfio_graph_limit = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(spin));
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMonitorTest.java 123 waiter.spin = true;
137 waiter.spin = false;
171 Boolean spin = false; field in class:OldAndroidMonitorTest.Waiter
188 while (spin) {
189 // We're going to get interrupted while we spin.
195 "during spin");
  /external/chromium_org/tools/traceline/traceline/
assembler_unittest.cc 17 cb.spin();
assembler.h 524 void spin() {
  /external/sonivox/jet_tools/JetCreator/
JetCtrls.py 31 """ Spin control """
45 """ Spin control that's one based """
412 self.spin = wx.SpinButton(parent, -1, (w, top), (h*2/3, h), wx.SP_VERTICAL)
413 self.spin.SetValue(1)
414 self.spin.SetRange(-999,999)
416 self.spin.Bind(wx.EVT_SPIN_UP, self.OnSpinUp, self.spin)
417 self.spin.Bind(wx.EVT_SPIN_DOWN, self.OnSpinDown, self.spin)
499 self.spin.Enable(enable)
    [all...]
  /development/samples/devbytes/animation/PropertyAnimations/src/com/example/android/propertyanimations/
PropertyAnimations.java 67 // Spin the button around in a full circle
89 setupAnimation(rotateButton, rotateAnimation, R.animator.spin);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ThreadTest.java 572 SpinThread spin = new SpinThread(); local
573 spinner = new Thread(spin);
582 spin.done = true;
585 spin.done = true;
  /external/openssl/crypto/
sparccpuid.S 190 .spin: call YIELD_CPU
194 be .spin
198 be .spin
  /external/chromium_org/chrome/browser/resources/chromeos/wallpaper_manager/css/
wallpaper_manager.css 143 @-webkit-keyframes spin {
155 -webkit-animation-name: spin;
  /external/chromium_org/chrome/browser/web_dev_style/
css_checker.py 177 'inner-spin-button',
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 793 public void fling(final View photo, float dx, float dy, int duration, boolean spin) {
807 if (spin) {
    [all...]
  /external/openssl/crypto/bn/asm/
ia64-mont.pl 235 // This loop spins in 4*(n+7) ticks on Itanium 2 and should spin in

Completed in 971 milliseconds

1 2