/third_party/FreeBSD/sys/dev/usb/ |
H A D | usb_process.c | 56 struct usb_process *up = (struct usb_process*)para; in usb_process_thread() local 67 sched_prio(td, up->up_prio); in usb_process_thread() 70 USB_MTX_LOCK(up->up_mtx); in usb_process_thread() 72 up->up_curtd = td; in usb_process_thread() 74 if (up->up_gone) in usb_process_thread() 104 * first one is sleeping, we end up enabling transmission in usb_process_thread() 122 pm = TAILQ_FIRST(&up->up_qhead); in usb_process_thread() 132 if (pm == TAILQ_FIRST(&up->up_qhead)) { in usb_process_thread() 134 TAILQ_REMOVE(&up->up_qhead, pm, pm_qentry); in usb_process_thread() 143 if (up in usb_process_thread() 206 usb_proc_create(struct usb_process *up, struct mtx *p_mtx, const char *pmesg, uint8_t prio) usb_proc_create() argument 243 usb_proc_free(struct usb_process *up) usb_proc_free() argument 270 usb_proc_msignal(struct usb_process *up, void *_pm0, void *_pm1) usb_proc_msignal() argument 354 usb_proc_is_gone(struct usb_process *up) usb_proc_is_gone() argument 378 usb_proc_mwait(struct usb_process *up, void *_pm0, void *_pm1) usb_proc_mwait() argument 423 usb_proc_drain(struct usb_process *up) usb_proc_drain() argument 472 usb_proc_rewakeup(struct usb_process *up) usb_proc_rewakeup() argument 496 usb_proc_is_called_from(struct usb_process *up) usb_proc_is_called_from() argument [all...] |
H A D | usb_process.h | 73 uint8_t usb_proc_is_gone(struct usb_process *up); 74 int usb_proc_create(struct usb_process *up, struct mtx *p_mtx, 76 void usb_proc_drain(struct usb_process *up); 77 void usb_proc_mwait(struct usb_process *up, void *pm0, void *pm1); 78 void usb_proc_free(struct usb_process *up); 79 void *usb_proc_msignal(struct usb_process *up, void *pm0, void *pm1); 80 void usb_proc_rewakeup(struct usb_process *up); 81 int usb_proc_is_called_from(struct usb_process *up);
|
H A D | usb_hub.c | 257 struct usb_port *up; in uhub_tt_buffer_reset_async_locked() local 283 up = hub->ports + port - 1; in uhub_tt_buffer_reset_async_locked() 290 if (up->req_reset_tt.bRequest != 0) { in uhub_tt_buffer_reset_async_locked() 310 up->req_reset_tt = req; in uhub_tt_buffer_reset_async_locked() 323 struct usb_port *up; in uhub_reset_tt_callback() local 338 up = udev->hub->ports + x; in uhub_reset_tt_callback() 340 if (up->req_reset_tt.bRequest == 0) in uhub_reset_tt_callback() 344 usbd_copy_in(xfer->frbuffers, 0, &up->req_reset_tt, in uhub_reset_tt_callback() 345 sizeof(up->req_reset_tt)); in uhub_reset_tt_callback() 347 (void)memset_s(&up in uhub_reset_tt_callback() 381 struct usb_port *up; uhub_count_active_host_ports() local 495 uhub_explore_sub(struct uhub_softc *sc, struct usb_port *up) uhub_explore_sub() argument 1058 struct usb_port *up; uhub_explore() local 1502 struct usb_port *up = hub->ports + x; uhub_attach() local 2267 usb_bus_port_get_device(struct usb_bus *bus, struct usb_port *up) usb_bus_port_get_device() argument 2286 usb_bus_port_set_device(struct usb_bus *bus, struct usb_port *up, struct usb_device *udev, uint8_t device_index) usb_bus_port_set_device() argument [all...] |
/third_party/python/Lib/test/ |
H A D | test_xdrlib.py | 29 up = xdrlib.Unpacker(data) 31 self.assertEqual(up.get_position(), 0) 33 self.assertEqual(up.unpack_int(), 42) 34 self.assertEqual(up.unpack_int(), -17) 35 self.assertEqual(up.unpack_uint(), 9) 36 self.assertTrue(up.unpack_bool() is True) 39 pos = up.get_position() 40 self.assertTrue(up.unpack_bool() is False) 43 up.set_position(pos) 44 self.assertTrue(up [all...] |
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | typesign.c | 6 static signed int * u_to_s_return(unsigned int *up) in u_to_s_return() argument 8 return up; in u_to_s_return() 13 unsigned int *up = sp; in s_to_u_init() local 14 return up; in s_to_u_init() 17 static signed int * u_to_s_init(unsigned int *up) in u_to_s_init() argument 19 signed int *sp = up; in u_to_s_init() 25 unsigned int *up; in s_to_u_assign() local 26 up = sp; in s_to_u_assign() 27 return up; in s_to_u_assign() 30 static signed int * u_to_s_assign(unsigned int *up) in u_to_s_assign() argument [all...] |
H A D | restrict.c | 7 void * up; variable 12 void f03(typeof(&up) dst) { } /* check-should-fail */ 16 rp = up; /* check-should-pass */ in foo() 17 up = rp; /* check-should-pass */ in foo() 23 void * up; in ref() local 28 pqp = &up; /* check-should-pass */ in ref() 31 pup = &up; /* check-should-pass */ in ref() 43 prp = &up; /* check-should-pass */ in bar() 46 pup = &up; /* check-should-pass */ in bar() 55 extern typeof(&up) pu in baz() [all...] |
/third_party/elfutils/libcpu/ |
H A D | memory-access.h | 97 const union unaligned *up = p; in read_2ubyte_unaligned() local 99 return bswap_16 (up->u2); in read_2ubyte_unaligned() 100 return up->u2; in read_2ubyte_unaligned() 105 const union unaligned *up = p; in read_2sbyte_unaligned() local 107 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned() 108 return up->s2; in read_2sbyte_unaligned() 114 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local 115 return up->u4; in read_4ubyte_unaligned_noncvt() 120 const union unaligned *up = p; in read_4ubyte_unaligned() local 122 return bswap_32 (up in read_4ubyte_unaligned() 128 const union unaligned *up = p; read_4sbyte_unaligned() local 137 const union unaligned *up = p; read_8ubyte_unaligned() local 145 const union unaligned *up = p; read_8sbyte_unaligned() local [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/ |
H A D | HuffmanEncoder.java | 35 short up; field in HuffmanEncoder.TreeNode 58 tree[i].up = (short)(i / 2); in HuffmanEncoder() 96 if (tree[tree[i].left].up != i) { in checkTree() 97 return "tree[tree[" + i + "].left].up == " + tree[tree[i].left].up + ", expected " + i; in checkTree() 99 if (tree[tree[i].right].up != i) { in checkTree() 100 return "tree[tree[" + i + "].right].up == " + tree[tree[i].right].up + ", expected " + i; in checkTree() 130 int a = tree[i].up; in checkTree() 147 for (; a != ROOT; a = tree[a].up) { in updateWeight() [all...] |
/third_party/elfutils/libdw/ |
H A D | memory-access.h | 259 const union unaligned *up = p; in read_2ubyte_unaligned_1() local 261 return bswap_16 (up->u2); in read_2ubyte_unaligned_1() 262 return up->u2; in read_2ubyte_unaligned_1() 267 const union unaligned *up = p; in read_2sbyte_unaligned_1() local 269 return (int16_t) bswap_16 (up->u2); in read_2sbyte_unaligned_1() 270 return up->s2; in read_2sbyte_unaligned_1() 276 const union unaligned *up = p; in read_4ubyte_unaligned_noncvt() local 277 return up->u4; in read_4ubyte_unaligned_noncvt() 282 const union unaligned *up = p; in read_4ubyte_unaligned_1() local 284 return bswap_32 (up in read_4ubyte_unaligned_1() 290 const union unaligned *up = p; read_4sbyte_unaligned_1() local 299 const union unaligned *up = p; read_8ubyte_unaligned_noncvt() local 305 const union unaligned *up = p; read_8ubyte_unaligned_1() local 313 const union unaligned *up = p; read_8sbyte_unaligned_1() local [all...] |
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | UpdateCallback.cpp | 154 const CUpdatePair2 &up = (*UpdatePairs)[index];
in GetUpdateItemInfo() local 155 if (newData) *newData = BoolToInt(up.NewData);
in GetUpdateItemInfo() 156 if (newProps) *newProps = BoolToInt(up.NewProps);
in GetUpdateItemInfo() 160 if (up.ExistInArchive())
in GetUpdateItemInfo() 161 *indexInArchive = ArcItems ? (*ArcItems)[(unsigned)up.ArcIndex].IndexInServer : (UInt32)(Int32)up.ArcIndex;
in GetUpdateItemInfo() 256 const CUpdatePair2 &up = (*UpdatePairs)[index];
in GetRawProp() local 257 if (up.UseArcProps && up.ExistInArchive() && Arc->GetRawProps)
in GetRawProp() 259 ArcItems ? (*ArcItems)[(unsigned)up in GetRawProp() 360 const CUpdatePair2 &up = (*UpdatePairs)[index]; GetProperty() local 555 const CUpdatePair2 &up = (*UpdatePairs)[index]; GetStream2() local 782 const CUpdatePair2 &up = (*UpdatePairs)[index]; ReportOperation() local [all...] |
H A D | UpdateCallback.h | 178 bool IsDir(const CUpdatePair2 &up) const
in IsDir() 180 if (up.DirIndex >= 0)
in IsDir() 181 return DirItems->Items[(unsigned)up.DirIndex].IsDir();
in IsDir() 182 else if (up.ArcIndex >= 0)
in IsDir() 183 return (*ArcItems)[(unsigned)up.ArcIndex].IsDir;
in IsDir()
|
/third_party/python/Lib/turtledemo/ |
H A D | peace.py | 21 up() 29 up() 43 up() 49 up() 54 up()
|
H A D | bytedesign.py | 33 self.up() 38 self.up() 41 self.up() 63 self.up() 73 self.up() 79 self.up() 87 self.up() 94 self.up() 103 self.up()
|
/third_party/libinput/tools/ |
H A D | libinput-measure-touchpad-tap.py | 67 def up(self): member in Touch 70 @up.setter 71 def up(self, up): member in Touch 72 assert up > self.down 73 self._up = up 81 return self.up - self.down 133 self.touches[-1].up = tv2us(event.sec, event.usec) 204 # 2: touch up time in ms, offset by first event 206 # Group 2, sorted by touch down-up delt [all...] |
/third_party/ltp/testcases/kernel/device-drivers/misc_modules/per_cpu_allocator_module/ |
H A D | test_per_cpu_allocator_module.c | 100 unsigned long *up = per_cpu_ptr(p, cpu); in fill_area() local 104 *up++ = v++; in fill_area() 117 unsigned long *up = per_cpu_ptr(p, cpu); in verify_area() local 121 if (*up != v && warns-- > 0) { in verify_area() 125 printk(" [%p]=%lx should be %lx\n", up, in verify_area() 126 *up, v); in verify_area() 128 up++; in verify_area() 211 printk("XXX cleaning up\n"); in test_exit()
|
/third_party/ffmpeg/libavformat/ |
H A D | avio.c | 74 static int url_alloc_for_protocol(URLContext **puc, const URLProtocol *up, in url_alloc_for_protocol() argument 82 if (up->flags & URL_PROTOCOL_FLAG_NETWORK && !ff_network_init()) in url_alloc_for_protocol() 85 if ((flags & AVIO_FLAG_READ) && !up->url_read) { in url_alloc_for_protocol() 87 "Impossible to open the '%s' protocol for reading\n", up->name); in url_alloc_for_protocol() 90 if ((flags & AVIO_FLAG_WRITE) && !up->url_write) { in url_alloc_for_protocol() 92 "Impossible to open the '%s' protocol for writing\n", up->name); in url_alloc_for_protocol() 103 uc->prot = up; in url_alloc_for_protocol() 107 if (up->priv_data_size) { in url_alloc_for_protocol() 108 uc->priv_data = av_mallocz(up->priv_data_size); in url_alloc_for_protocol() 113 if (up in url_alloc_for_protocol() 274 const URLProtocol *up = protocols[i]; url_find_protocol() local [all...] |
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-module-sourcemap.cc | 93 std::vector<std::size_t>::const_iterator up = in GetSourceLine() local 95 CHECK_NE(offsets.begin(), up); in GetSourceLine() 96 size_t source_idx = up - offsets.begin() - 1; in GetSourceLine() 101 std::vector<size_t>::const_iterator up = in GetFilename() local 103 CHECK_NE(offsets.begin(), up); in GetFilename() 104 size_t offset_idx = up - offsets.begin() - 1; in GetFilename() 114 std::vector<size_t>::const_iterator up = in HasValidEntry() local 116 if (up == offsets.begin()) return false; in HasValidEntry() 117 size_t offset_idx = up - offsets.begin() - 1; in HasValidEntry()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | decNumber.cpp | 62 /* precision (up to 999,999,999 digits) and arbitrary exponent */ 160 /* numbers up to four digits, using appropriate constants. This */ 237 /* of 17 [we only need up to **4] */ 382 Unit *up; /* work pointer */ in uprv_decNumberFromUInt32() local 385 for (up=dn->lsu; uin>0; up++) { in uprv_decNumberFromUInt32() 386 *up=(Unit)(uin%(DECDPUNMAX+1)); in uprv_decNumberFromUInt32() 389 dn->digits=decGetDigits(dn->lsu, static_cast<int32_t>(up - dn->lsu)); in uprv_decNumberFromUInt32() 412 const Unit *up; /* .. */ in uprv_decNumberToInt32() local 414 up in uprv_decNumberToInt32() 448 const Unit *up; /* .. */ uprv_decNumberToUInt32() local 525 Unit *up; /* .. */ uprv_decNumberFromString() local 3492 const Unit *up=dn->lsu; /* Unit pointer, -> lsu */ uprv_decNumberGetBCD() local 3525 Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [target pointer] */ uprv_decNumberSetBCD() local 3660 const Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [input pointer] */ decToString() local 4741 Unit *up; /* .. */ decDivideOp() local 4923 Unit *up; /* .. */ decMultiplyOp() local 6641 Unit *up; /* -> current Unit */ global() local 6788 Unit *target, *up; /* work */ global() local 6939 const Unit *up; /* work */ global() local 7204 Unit *up; /* work */ global() local 7228 Unit *up, *sup; /* work */ global() local 7442 Unit *up; /* work */ global() local 7591 const Unit *up; /* work */ global() local 7815 Unit *up=uar+(len-1); /* -> msu */ global() local 7861 const Unit *up; /* work */ global() local 8004 const Unit *up; /* work */ global() local [all...] |
/third_party/node/deps/icu-small/source/i18n/ |
H A D | decNumber.cpp | 62 /* precision (up to 999,999,999 digits) and arbitrary exponent */ 160 /* numbers up to four digits, using appropriate constants. This */ 237 /* of 17 [we only need up to **4] */ 382 Unit *up; /* work pointer */ in uprv_decNumberFromUInt32() local 385 for (up=dn->lsu; uin>0; up++) { in uprv_decNumberFromUInt32() 386 *up=(Unit)(uin%(DECDPUNMAX+1)); in uprv_decNumberFromUInt32() 389 dn->digits=decGetDigits(dn->lsu, static_cast<int32_t>(up - dn->lsu)); in uprv_decNumberFromUInt32() 412 const Unit *up; /* .. */ in uprv_decNumberToInt32() local 414 up in uprv_decNumberToInt32() 448 const Unit *up; /* .. */ uprv_decNumberToUInt32() local 525 Unit *up; /* .. */ uprv_decNumberFromString() local 3492 const Unit *up=dn->lsu; /* Unit pointer, -> lsu */ uprv_decNumberGetBCD() local 3525 Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [target pointer] */ uprv_decNumberSetBCD() local 3660 const Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [input pointer] */ decToString() local 4741 Unit *up; /* .. */ decDivideOp() local 4923 Unit *up; /* .. */ decMultiplyOp() local 6641 Unit *up; /* -> current Unit */ global() local 6788 Unit *target, *up; /* work */ global() local 6939 const Unit *up; /* work */ global() local 7204 Unit *up; /* work */ global() local 7228 Unit *up, *sup; /* work */ global() local 7442 Unit *up; /* work */ global() local 7591 const Unit *up; /* work */ global() local 7815 Unit *up=uar+(len-1); /* -> msu */ global() local 7861 const Unit *up; /* work */ global() local 8004 const Unit *up; /* work */ global() local [all...] |
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | decNumber.cpp | 62 /* precision (up to 999,999,999 digits) and arbitrary exponent */ 160 /* numbers up to four digits, using appropriate constants. This */ 237 /* of 17 [we only need up to **4] */ 382 Unit *up; /* work pointer */ in uprv_decNumberFromUInt32() local 385 for (up=dn->lsu; uin>0; up++) { in uprv_decNumberFromUInt32() 386 *up=(Unit)(uin%(DECDPUNMAX+1)); in uprv_decNumberFromUInt32() 389 dn->digits=decGetDigits(dn->lsu, static_cast<int32_t>(up - dn->lsu)); in uprv_decNumberFromUInt32() 412 const Unit *up; /* .. */ in uprv_decNumberToInt32() local 414 up in uprv_decNumberToInt32() 448 const Unit *up; /* .. */ uprv_decNumberToUInt32() local 525 Unit *up; /* .. */ uprv_decNumberFromString() local 3492 const Unit *up=dn->lsu; /* Unit pointer, -> lsu */ uprv_decNumberGetBCD() local 3525 Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [target pointer] */ uprv_decNumberSetBCD() local 3660 const Unit *up=dn->lsu+D2U(dn->digits)-1; /* -> msu [input pointer] */ decToString() local 4741 Unit *up; /* .. */ decDivideOp() local 4923 Unit *up; /* .. */ decMultiplyOp() local 6641 Unit *up; /* -> current Unit */ global() local 6788 Unit *target, *up; /* work */ global() local 6939 const Unit *up; /* work */ global() local 7204 Unit *up; /* work */ global() local 7228 Unit *up, *sup; /* work */ global() local 7442 Unit *up; /* work */ global() local 7591 const Unit *up; /* work */ global() local 7815 Unit *up=uar+(len-1); /* -> msu */ global() local 7861 const Unit *up; /* work */ global() local 8004 const Unit *up; /* work */ global() local [all...] |
/third_party/toybox/openharmony/ |
H A D | su.c | 37 struct passwd *up = getpwnam(name); in xgetpwnam() local 39 if (!up) in xgetpwnam() 41 return up; in xgetpwnam() 104 struct passwd *up; in main() local 148 xsetuser(up = xgetpwnam(name)); in main() 154 reset_env(up, FLAG(l)); in main()
|
/third_party/ffmpeg/libavcodec/ |
H A D | huffman.c | 63 int *up = av_malloc_array(sizeof(*up) * 2, stats_size); in ff_huff_gen_len_table() local 70 if (!h || !up || !len || !map) { in ff_huff_gen_len_table() 92 up[h[0].name] = next; in ff_huff_gen_len_table() 95 up[h[0].name] = next; in ff_huff_gen_len_table() 103 len[i] = len[up[i]] + 1; in ff_huff_gen_len_table() 105 dst[map[i]] = len[up[i]] + 1; in ff_huff_gen_len_table() 112 av_free(up); in ff_huff_gen_len_table()
|
/third_party/toybox/toys/lsb/ |
H A D | su.c | 48 struct passwd *up; in su_main() local 71 xsetuser(up = xgetpwnam(name)); in su_main() 76 } else reset_env(up, FLAG(l)); in su_main() 79 *(argv++) = TT.s ? TT.s : up->pw_shell; in su_main()
|
/third_party/typescript/tests/baselines/reference/tsbuild/sample1/ |
H A D | can-detect-when-and-what-to-rebuild.js | 395 [[90m12:00:27 AM[0m] Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than output 'src/core/tsconfig.tsbuildinfo'
397 [[90m12:00:28 AM[0m] Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than output 'src/logic/tsconfig.tsbuildinfo'
399 [[90m12:00:29 AM[0m] Project 'src/tests/tsconfig.json' is up to date because newest input 'src/tests/index.ts' is older than output 'src/tests/tsconfig.tsbuildinfo'
420 [[90m12:00:32 AM[0m] Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/anotherModule.ts' is older than output 'src/core/tsconfig.tsbuildinfo'
422 [[90m12:00:33 AM[0m] Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than output 'src/logic/tsconfig.tsbuildinfo'
501 [[90m12:00:50 AM[0m] Project 'src/logic/tsconfig.json' is up to date with .d.ts files from its dependencies
505 [[90m12:00:54 AM[0m] Project 'src/tests/tsconfig.json' is up to date with .d.ts files from its dependencies
608 [[90m12:01:00 AM[0m] Project 'src/core/tsconfig.json' is up to date because newest input 'src/core/index.ts' is older than output 'src/core/tsconfig.tsbuildinfo'
610 [[90m12:01:01 AM[0m] Project 'src/logic/tsconfig.json' is up to date because newest input 'src/logic/index.ts' is older than output 'src/logic/tsconfig.tsbuildinfo'
|
/third_party/node/deps/npm/node_modules/@colors/colors/lib/custom/ |
H A D | zalgo.js | 5 'up': [ 41 var all = [].concat(soul.up, soul.down, soul.mid); 62 options['up'] = 63 typeof options['up'] !== 'undefined' ? options['up'] : true; 76 counts = {'up': 0, 'down': 0, 'mid': 0}; 79 counts.up = randomNumber(8); 84 counts.up = randomNumber(16) + 3; 89 counts.up = randomNumber(8) + 1; 95 var arr = ['up', 'mi [all...] |