HomeSort by relevance Sort by last modified time
    Searched defs:tx (Results 1 - 25 of 229) sorted by null

1 2 3 4 5 6 7 8 910

  /external/libese/tools/ese_replay/
payload.h 27 struct Buffer tx; member in struct:Payload
  /external/strace/
print_timex.c 47 struct_timex tx; local
49 if (umove_or_printaddr(tcp, addr, &tx))
53 printflags(adjtimex_modes, tx.modes, "ADJ_???");
55 (intmax_t) tx.offset, (intmax_t) tx.freq,
56 (uintmax_t) tx.maxerror, (uintmax_t) tx.esterror);
57 printflags(adjtimex_status, tx.status, "STA_???");
59 (intmax_t) tx.constant, (uintmax_t) tx.precision
    [all...]
  /device/google/contexthub/firmware/os/platform/stm32/inc/plat/
usart.h 29 struct Gpio *tx; member in struct:usart
  /bionic/libc/kernel/uapi/linux/
atm_eni.h 23 int tx, rx; member in struct:eni_multipliers
  /external/kernel-headers/original/uapi/linux/
atm_eni.h 15 int tx,rx; /* values are in percent and must be > 100 */ member in struct:eni_multipliers
  /external/linux-kselftest/tools/testing/selftests/timers/
change_skew.c 38 struct timex tx; local
41 tx.modes = ADJ_FREQUENCY;
42 tx.freq = ppm << 16;
44 ret = adjtimex(&tx);
60 struct timex tx; local
69 tx.modes = ADJ_OFFSET;
70 tx.offset = 0;
71 ret = adjtimex(&tx);
86 tx.modes = ADJ_FREQUENCY;
87 tx.offset = 0
    [all...]
set-tai.c 30 struct timex tx; local
32 memset(&tx, 0, sizeof(tx));
34 tx.modes = ADJ_TAI;
35 tx.constant = offset;
37 return adjtimex(&tx);
42 struct timex tx; local
44 memset(&tx, 0, sizeof(tx));
46 adjtimex(&tx);
    [all...]
skew_consistency.c 44 struct timex tx; local
60 tx.modes = ADJ_FREQUENCY;
61 tx.freq = ppm << 16;
62 adjtimex(&tx);
67 tx.modes = ADJ_FREQUENCY;
68 tx.offset = 0;
69 adjtimex(&tx);
leapcrash.c 30 struct timex tx; local
39 tx.modes = ADJ_STATUS;
40 tx.status = STA_PLL;
41 ret = adjtimex(&tx);
43 tx.modes = ADJ_STATUS;
44 tx.status = 0;
45 ret = adjtimex(&tx);
60 struct timex tx; local
92 tx.modes = 0;
93 adjtimex(&tx);
    [all...]
  /external/boringssl/src/crypto/rc4/
rc4.c 67 uint32_t tx = d[x]; local
68 y = (tx + y) & 0xff;
71 d[y] = tx;
72 out[i] = d[(tx + ty) & 0xff] ^ in[i];
  /external/skia/gm/
drrect_small_inner.cpp 27 SkScalar tx = kOuterRadius - innerRadiusX; local
30 tx += 1.f;
33 SkRect::MakeXYWH(tx, ty, 2 * innerRadiusX, 2 * innerRadiusY));
  /external/skqp/gm/
drrect_small_inner.cpp 27 SkScalar tx = kOuterRadius - innerRadiusX; local
30 tx += 1.f;
33 SkRect::MakeXYWH(tx, ty, 2 * innerRadiusX, 2 * innerRadiusY));
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_rem_pio2f.c 50 double tx[1],ty[1]; local
74 tx[0] = z;
75 n = __kernel_rem_pio2(tx,ty,e0,1,0);
  /cts/tests/tests/accounts/common/src/android/accounts/cts/common/tx/
AddAccountTx.java 1 package android.accounts.cts.common.tx;
ConfirmCredentialsTx.java 1 package android.accounts.cts.common.tx;
EditPropertiesTx.java 1 package android.accounts.cts.common.tx;
GetAccountRemovalAllowedTx.java 1 package android.accounts.cts.common.tx;
GetAuthTokenLabelTx.java 1 package android.accounts.cts.common.tx;
GetAuthTokenTx.java 1 package android.accounts.cts.common.tx;
HasFeaturesTx.java 1 package android.accounts.cts.common.tx;
StartAddAccountSessionTx.java 1 package android.accounts.cts.common.tx;
StartUpdateCredentialsSessionTx.java 1 package android.accounts.cts.common.tx;
UpdateCredentialsTx.java 1 package android.accounts.cts.common.tx;
  /device/google/contexthub/firmware/os/platform/stm32/
hostIntf.c 47 enum IRQn rx, tx; local
55 /* get the rx and tx irq numbers used by the host spi bus */
58 tx = spiTxIrq(PLATFORM_HOST_INTF_SPI_BUS);
61 /* make the tx and rx dma isrs execute before other isrs when multiple
70 priority = NVIC_GetPriority(tx);
74 NVIC_SetPriority(tx, NVIC_EncodePriority(priorityGroup, preemptPriority, subPriority));
  /external/bcc/tests/python/
test_stat1.c 38 int rx = 0, tx = 0; local
47 tx = 1;
52 lock_xadd(&leaf->tx_pkts, tx);

Completed in 592 milliseconds

1 2 3 4 5 6 7 8 910