Home
last modified time | relevance | path

Searched refs:oi (Results 1 - 25 of 28) sorted by relevance

12

/third_party/libcoap/tests/
H A Dtest_options.c479 coap_opt_iterator_t oi, *result; in t_iterate_option1() local
482 result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL); in t_iterate_option1()
485 CU_ASSERT(oi.bad == 1); in t_iterate_option1()
487 option = coap_option_next(&oi); in t_iterate_option1()
488 CU_ASSERT(oi.bad == 1); in t_iterate_option1()
505 coap_opt_iterator_t oi, *result; in t_iterate_option2() local
508 result = coap_option_iterator_init(&pdu, &oi, COAP_OPT_ALL); in t_iterate_option2()
511 CU_ASSERT(oi.bad == 1); in t_iterate_option2()
513 option = coap_option_next(&oi); in t_iterate_option2()
514 CU_ASSERT(oi in t_iterate_option2()
532 coap_opt_iterator_t oi, *result; t_iterate_option3() local
575 coap_opt_iterator_t oi, *result; t_iterate_option4() local
617 coap_opt_iterator_t oi, *result; t_iterate_option5() local
650 coap_opt_iterator_t oi, *result; t_iterate_option6() local
695 coap_opt_iterator_t oi, *result; t_iterate_option7() local
742 coap_opt_iterator_t oi, *result; t_iterate_option8() local
773 coap_opt_iterator_t oi, *result; t_iterate_option9() local
804 coap_opt_iterator_t oi, *result; t_iterate_option10() local
[all...]
H A Dtest_pdu.c724 coap_opt_iterator_t oi; in t_encode_pdu12() local
738 coap_option_iterator_init(pdu, &oi, COAP_OPT_ALL); in t_encode_pdu12()
740 option = coap_option_next(&oi); in t_encode_pdu12()
741 CU_ASSERT(oi.bad == 0); in t_encode_pdu12()
746 option = coap_option_next(&oi); in t_encode_pdu12()
747 CU_ASSERT(oi.bad == 1); in t_encode_pdu12()
759 coap_opt_iterator_t oi; in t_encode_pdu13() local
773 coap_option_iterator_init(pdu, &oi, COAP_OPT_ALL); in t_encode_pdu13()
775 option = coap_option_next(&oi); in t_encode_pdu13()
776 CU_ASSERT(oi in t_encode_pdu13()
794 coap_opt_iterator_t oi; t_encode_pdu14() local
830 coap_opt_iterator_t oi; t_encode_pdu15() local
[all...]
/third_party/libcoap/src/
H A Dcoap_option.c117 coap_option_iterator_init(const coap_pdu_t *pdu, coap_opt_iterator_t *oi, in coap_option_iterator_init() argument
121 assert(oi); in coap_option_iterator_init()
123 memset(oi, 0, sizeof(coap_opt_iterator_t)); in coap_option_iterator_init()
125 oi->next_option = pdu->token + pdu->e_token_length; in coap_option_iterator_init()
126 if (pdu->token + pdu->used_size <= oi->next_option) { in coap_option_iterator_init()
127 oi->bad = 1; in coap_option_iterator_init()
131 oi->length = pdu->used_size - pdu->e_token_length; in coap_option_iterator_init()
134 memcpy(&oi->filter, filter, sizeof(coap_opt_filter_t)); in coap_option_iterator_init()
135 oi->filtered = 1; in coap_option_iterator_init()
137 return oi; in coap_option_iterator_init()
141 opt_finished(coap_opt_iterator_t *oi) opt_finished() argument
153 coap_option_next(coap_opt_iterator_t *oi) coap_option_next() argument
199 coap_check_option(const coap_pdu_t *pdu, coap_option_num_t number, coap_opt_iterator_t *oi) coap_check_option() argument
[all...]
/third_party/glfw/src/
H A Dx11_monitor.c130 XRROutputInfo* oi = XRRGetOutputInfo(_glfw.x11.display, sr, sr->outputs[i]); in _glfwPollMonitorsX11() local
131 if (oi->connection != RR_Connected || oi->crtc == None) in _glfwPollMonitorsX11()
133 XRRFreeOutputInfo(oi); in _glfwPollMonitorsX11()
149 XRRFreeOutputInfo(oi); in _glfwPollMonitorsX11()
153 XRRCrtcInfo* ci = XRRGetCrtcInfo(_glfw.x11.display, sr, oi->crtc); in _glfwPollMonitorsX11()
156 widthMM = oi->mm_height; in _glfwPollMonitorsX11()
157 heightMM = oi->mm_width; in _glfwPollMonitorsX11()
161 widthMM = oi->mm_width; in _glfwPollMonitorsX11()
162 heightMM = oi in _glfwPollMonitorsX11()
243 XRROutputInfo* oi = XRRGetOutputInfo(_glfw.x11.display, sr, monitor->x11.output); _glfwSetVideoModeX11() local
454 XRROutputInfo* oi = XRRGetOutputInfo(_glfw.x11.display, sr, monitor->x11.output); _glfwGetVideoModesX11() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dsga.c205 int oi = 0; in lzss_decompress() local
207 while (bytestream2_get_bytes_left(gb) > 0 && oi < dst_size) { in lzss_decompress()
214 if (oi + 2 < dst_size) { in lzss_decompress()
215 dst[oi++] = bytestream2_get_byte(gb); in lzss_decompress()
216 dst[oi++] = bytestream2_get_byte(gb); in lzss_decompress()
226 oi < dst_size) in lzss_decompress()
227 dst[oi++] = bytestream2_get_byte(gb); in lzss_decompress()
228 return oi; in lzss_decompress()
235 if (oi < offset || oi in lzss_decompress()
[all...]
H A Ddxv.c505 int oi = *oindex; in dxv_decompress_cgo() local
510 if (oi >= op_size) in dxv_decompress_cgo()
512 opcode = op_data[oi++]; in dxv_decompress_cgo()
728 *oindex = oi; in dxv_decompress_cgo()
799 int ret, state = 0, skip, oi = 0, v, vv; in dxv_decompress_yo() local
822 ret = dxv_decompress_cgo(ctx, gb, tex_data, tex_size, op_data, &oi, op_size, in dxv_decompress_yo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp222 for (unsigned oi = 1, oe = I.getNumOperands(); oi != oe; oi += 2) { in trivialTailPHIs()
223 MachineBasicBlock *MBB = I.getOperand(oi + 1).getMBB(); in trivialTailPHIs()
224 Register Reg = I.getOperand(oi).getReg(); in trivialTailPHIs()
247 for (unsigned oi = I.getNumOperands(); oi > 2; oi -= 2) { in updateTailPHIs()
248 // PHI operands are (Reg, MBB) at (oi-2, oi in updateTailPHIs()
[all...]
/third_party/mesa3d/bin/
H A Dmeson-options.py19 oi = optinterpreter.OptionInterpreter('') variable
20 oi.process('meson_options.txt')
22 for (name, value) in oi.options.items():
/third_party/libcoap/include/coap3/
H A Dcoap_option.h178 * Initializes the given option iterator @p oi to point to the beginning of the
179 * @p pdu's option list. This function returns @p oi on success, @c NULL
184 * @param oi An iterator object that will be initilized.
191 * @return The iterator object @p oi on success, @c NULL otherwise.
194 coap_opt_iterator_t *oi,
198 * Updates the iterator @p oi to point to the next option. This function returns
200 * @p oi will be updated. In particular, @c oi->n specifies the current option's
201 * ordinal number (counted from @c 1), @c oi->number is the option's number
202 * value, and @c oi
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sb/
H A Dsb_gcm.cpp584 void gcm::bu_find_best_bb(node *n, op_info &oi) { in bu_find_best_bb() argument
592 if (oi.bottom_bb) in bu_find_best_bb()
597 oi.bottom_bb = bu_bb; in bu_find_best_bb()
602 bb_node* top_bb = oi.top_bb; in bu_find_best_bb()
603 assert(oi.top_bb && !oi.bottom_bb); in bu_find_best_bb()
633 oi.bottom_bb = best_bb; in bu_find_best_bb()
654 op_info &oi = op_map[n]; in bu_release_op() local
664 bu_find_best_bb(n, oi); in bu_release_op()
666 if (oi in bu_release_op()
[all...]
H A Dsb_pass.h292 void bu_find_best_bb(node *n, op_info &oi);
/third_party/ltp/testcases/kernel/fs/doio/
H A Drwtest253 oi="$IFS"
261 IFS="$oi"
/third_party/mksh/
H A Dmisc.c152 const struct options_info *oi = (const struct options_info *)arg; in options_fmt_entry() local
155 oi->opt_width, OFN(oi->opts[i]), in options_fmt_entry()
156 Flag(oi->opts[i]) ? "on" : "off"); in options_fmt_entry()
188 struct options_info oi; in printoptions() local
194 oi.opt_width = 0; in printoptions()
197 oi.opts[n++] = i; in printoptions()
201 if ((int)len > oi.opt_width) in printoptions()
202 oi.opt_width = (int)len; in printoptions()
209 print_columns(&co, n, options_fmt_entry, &oi, in printoptions()
[all...]
/third_party/node/deps/openssl/openssl/crypto/perlasm/
H A Dx86masm.pl24 for (@arg) { s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/oi; }
/third_party/openssl/crypto/perlasm/
H A Dx86masm.pl24 for (@arg) { s/(?<![\w\$\.])0x([0-9a-f]+)/0$1h/oi; }
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
H A DDrawBaseVertexBaseInstanceTest.cpp137 uint32_t oi = 6 * i; in DrawBaseVertexBaseInstanceTest() local
141 mRegularIndices[oi + j] = mIndices[j] + ov; in DrawBaseVertexBaseInstanceTest()
H A DDrawBaseVertexVariantsTest.cpp163 uint32_t oi = 6 * i; in DrawBaseVertexVariantsTest() local
167 mRegularIndices[oi + j] = mIndices[j] + ov; in DrawBaseVertexVariantsTest()
/third_party/ntfs-3g/ntfsprogs/
H A Dmkntfs.c2097 OBJECT_ID_ATTR oi; in add_attr_object_id() local
2100 oi = (OBJECT_ID_ATTR) { in add_attr_object_id()
2105 0, (u8*)&oi, sizeof(oi.object_id)); in add_attr_object_id()
3377 OBJ_ID_INDEX_DATA *oi; in index_obj_id_insert() local
3397 oi = (OBJ_ID_INDEX_DATA*)((u8*)idx_entry_new + data_ofs); in index_obj_id_insert()
3398 oi->mft_reference = ref; in index_obj_id_insert()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/
H A Dap_config.h205 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member
H A Dieee802_11_shared.c597 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi, in hostapd_eid_roaming_consortium()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/
H A Dap_config.h204 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member
H A Dieee802_11_shared.c581 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi, in hostapd_eid_roaming_consortium()
/third_party/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.cpp1628 int oi = orderIndices[i];
1629 if (oi >= 0)
1630 if (StringsAreEqualNoCase_Ascii(codecs->Formats[(unsigned)oi].Name, name))
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/
H A Dap_config_file.c1264 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; in parse_roaming_consortium() local
1269 hexstr2bin(pos, oi, len / 2)) { in parse_roaming_consortium()
1282 os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len); in parse_roaming_consortium()
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/
H A Dap_config_file.c1334 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; in parse_roaming_consortium() local
1339 hexstr2bin(pos, oi, len / 2)) { in parse_roaming_consortium()
1352 os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len); in parse_roaming_consortium()

Completed in 46 milliseconds

12