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

1 2 3 4 5 6 7 8 91011>>

  /external/selinux/restorecond/
utmpwatcher.h 26 unsigned int utmpwatcher_handle(int inotify_fd, int wd);
restorecond.h 41 extern int watch_list_find(int wd, const char *file);
  /external/autotest/client/site_tests/security_Minijail0/src/
test-chroot 15 wd=$(pwd)
16 [ "$wd" != "/" ] && die "not in /"
test-pivotroot 15 wd=$(pwd)
16 [ "$wd" != "/" ] && die "not in /"
  /tools/test/connectivity/acts/framework/acts/test_utils/net/
arduino_test_utils.py 38 def connect_wifi(wd, network=None):
42 wd - wifi dongle object
45 wd.log.info("Flashing connect_wifi.ino onto dongle")
48 write_status = wd.write(ARDUINO, file_path, network)
50 wd.log.info("Flashing complete")
51 wifi_status = wd.wifi_status()
53 ping_status = wd.ping_status()
56 def disconnect_wifi(wd):
60 wd - wifi dongle object
66 wd.log.info("Flashing disconnect_wifi.ino onto dongle"
    [all...]
  /external/libavc/common/
ih264_weighted_pred.c 63 /* two ht x wd blocks, calculates their rounded-average and */
64 /* stores it in the destination block. (ht,wd) can be */
74 /* wd - width of the block */
92 WORD32 wd)
96 src_strd1 -= wd;
97 src_strd2 -= wd;
98 dst_strd -= wd;
102 for(j = 0; j < wd; j++, pu1_src1++, pu1_src2++, pu1_dst++)
118 /* two ht x wd blocks, calculates their rounded-average and */
119 /* stores it in the destination block. (ht,wd) can be *
    [all...]
ih264_inter_pred_filters.c 80 * Copies the array of width 'wd' and height 'ht' from the location pointed
99 * @param[in] wd
115 WORD32 wd,
124 for(col = 0; col < wd; col++)
141 * Copies the array of width 'wd' and height 'ht' from the location pointed
159 * @param[in] wd
175 WORD32 wd)
178 wd *= 2;
182 for(col = 0; col < wd; col+=2)
217 * @param[in] wd
    [all...]
  /external/ltp/testcases/kernel/syscalls/inotify/
inotify.h 44 #define myinotify_rm_watch(fd, wd) \
45 ltp_syscall(__NR_inotify_rm_watch, fd, wd)
  /external/libhevc/common/
ihevc_sao.c 79 WORD32 wd,
90 pu1_src_left[row] = pu1_src[row * src_strd + (wd - 1)];
92 pu1_src_top_left[0] = pu1_src_top[wd - 1];
93 for(col = 0; col < wd; col++)
110 for(col = 0; col < wd; col++)
123 /* input 'wd' has to be for the interleaved block and not for each color component */
133 WORD32 wd,
145 pu1_src_left[2 * row] = pu1_src[row * src_strd + (wd - 2)];
146 pu1_src_left[2 * row + 1] = pu1_src[row * src_strd + (wd - 1)];
148 pu1_src_top_left[0] = pu1_src_top[wd - 2]
    [all...]
ihevc_padding.c 69 * @param[in] wd
78 * @param[in] wd
92 WORD32 wd,
99 memcpy(pu1_src - row * src_strd, pu1_src, wd);
101 pu1_src + (ht - 1) * src_strd, wd);
123 * @param[in] wd
132 * @param[in] wd
146 WORD32 wd,
154 wd >>= 1;
164 u2_uv_val = pu2_src[wd - 1]
    [all...]
ihevc_inter_pred_filters.c 75 * Copies the array of width 'wd' and height 'ht' from the location pointed
96 * @param[in] wd
114 WORD32 wd)
120 for(col = 0; col < wd; col++)
159 * @param[in] wd
176 WORD32 wd)
183 for(col = 0; col < wd; col++)
231 * @param[in] wd
249 WORD32 wd)
256 for(col = 0; col < wd; col++
    [all...]
ihevc_padding.h 45 WORD32 wd,
52 WORD32 wd,
59 WORD32 wd,
66 WORD32 wd,
73 WORD32 wd,
80 WORD32 wd,
85 WORD32 wd,
90 WORD32 wd,
95 WORD32 wd,
100 WORD32 wd,
    [all...]
  /external/libmpeg2/common/
icv_variance.h 41 typedef WORD32 icv_variance_8x4_t(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 ht);
icv_sad.c 76 * @param[in] wd
93 WORD32 wd,
99 UNUSED(wd);
102 ASSERT(wd == 8);
icv_variance.c 71 * @param[in] wd
84 WORD32 icv_variance_8x4(UWORD8 *pu1_src, WORD32 src_strd, WORD32 wd, WORD32 ht)
92 UNUSED(wd);
95 ASSERT(wd == 8);
ideint_debug.c 96 WORD32 wd, ht, strd; local
98 wd = ps_pic->ai4_wd[i];
105 memset(pu1_buf, val, wd);
icv_sad.h 45 WORD32 wd,
  /external/fio/engines/
windowsaio.c 35 struct windowsaio_data *wd; member in struct:thread_ctx
52 struct windowsaio_data *wd; local
55 wd = calloc(1, sizeof(struct windowsaio_data));
56 if (wd == NULL) {
62 wd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u*));
63 if (wd->aio_events == NULL) {
71 wd->iocomplete_event = CreateEvent(NULL, FALSE, FALSE, NULL);
72 if (wd->iocomplete_event == NULL) {
79 if (wd != NULL) {
80 if (wd->aio_events != NULL
91 struct windowsaio_data *wd; local
137 struct windowsaio_data *wd; local
212 struct windowsaio_data *wd; local
259 struct windowsaio_data *wd = td->io_ops_data; local
267 struct windowsaio_data *wd = td->io_ops_data; local
372 struct windowsaio_data *wd; local
    [all...]
  /external/annotation-tools/annotation-file-utilities/scripts/
merge-annotations 15 wd=`pwd`
16 cp="$jb:$cf:$sl:$al/*:$wd:$CLASSPATH"
25 CLASSPATH="$wd/$aj/build:$CHECKERFRAMEWORK/checker/build:$CLASSPATH" \
33 cd "$wd"
  /prebuilts/go/darwin-x86/src/syscall/
pwd_plan9.go 33 wd, _ := getwd()
34 if wd == wdStr {
43 func getwd() (wd string, err error) {
52 func Getwd() (wd string, err error) {
59 wd, err = getwd()
64 wdStr = wd
65 return wd, nil
76 wd, err := getwd()
81 wdStr = wd
  /prebuilts/go/linux-x86/src/syscall/
pwd_plan9.go 33 wd, _ := getwd()
34 if wd == wdStr {
43 func getwd() (wd string, err error) {
52 func Getwd() (wd string, err error) {
59 wd, err = getwd()
64 wdStr = wd
65 return wd, nil
76 wd, err := getwd()
81 wdStr = wd
  /art/compiler/utils/mips64/
assembler_mips64.h 672 void AndV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
673 void OrV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
674 void NorV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
675 void XorV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
677 void AddvB(VectorRegister wd, VectorRegister ws, VectorRegister wt);
678 void AddvH(VectorRegister wd, VectorRegister ws, VectorRegister wt);
679 void AddvW(VectorRegister wd, VectorRegister ws, VectorRegister wt);
680 void AddvD(VectorRegister wd, VectorRegister ws, VectorRegister wt);
681 void SubvB(VectorRegister wd, VectorRegister ws, VectorRegister wt);
682 void SubvH(VectorRegister wd, VectorRegister ws, VectorRegister wt)
    [all...]
  /art/compiler/utils/mips/
assembler_mips.h 569 void AndV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
570 void OrV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
571 void NorV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
572 void XorV(VectorRegister wd, VectorRegister ws, VectorRegister wt);
574 void AddvB(VectorRegister wd, VectorRegister ws, VectorRegister wt);
575 void AddvH(VectorRegister wd, VectorRegister ws, VectorRegister wt);
576 void AddvW(VectorRegister wd, VectorRegister ws, VectorRegister wt);
577 void AddvD(VectorRegister wd, VectorRegister ws, VectorRegister wt);
578 void SubvB(VectorRegister wd, VectorRegister ws, VectorRegister wt);
579 void SubvH(VectorRegister wd, VectorRegister ws, VectorRegister wt)
    [all...]
  /external/libavc/decoder/
ih264d_format_conv.h 69 WORD32 wd,
82 WORD32 wd,
93 WORD32 wd,
103 WORD32 wd,
  /external/libhevc/decoder/
ihevcd_fmt_conv.h 49 WORD32 wd,
59 WORD32 wd,
71 WORD32 wd,
82 WORD32 wd,

Completed in 263 milliseconds

1 2 3 4 5 6 7 8 91011>>