/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/ |
H A D | tst.PartialDereferencing.d | 45 int oi; member 52 oi = ((struct input_struct) ivar).ii; 65 out.oi = xlate < struct output_struct > (in).oi; 67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc); 71 /(100 != out.oi) || (0 != out.oc)/ 77 /(100 == out.oi) && (0 == out.oc)/
|
H A D | tst.StructureAssignment.d | 46 int oi; member 53 oi = ((struct input_struct) ivar).ii; 67 printf("out.oi: %d\t out.oc: %d\n", out.oi, out.oc); 71 /(100 != out.oi) || (0 != out.oc)/ 77 /(100 == out.oi) && (0 == out.oc)/
|
H A D | err.D_XLATE_REDECL.RepeatTransDecl.d | 45 int oi; member 52 oi = ((struct input_struct *) ivar1)->ii1; 58 oi = ((struct input_struct *) ivar1)->ii1;
|
H A D | tst.RepeatDeclaration.d | 50 int oi; member 57 oi = ((struct input_struct1 *) ivar1)->ii1; 63 oi = ((struct input_struct2 *) ivar2)->ii2;
|
H A D | tst.PartialOutputTransDefn.d | 46 int oi; member 53 oi = ((struct input_struct *) ivar)->ii;
|
H A D | tst.UnionOutputTrans.d | 46 int oi; member 52 oi = ((struct input_struct *) ivar)->ii;
|
H A D | tst.InputAliasTrans.d | 45 int oi; member 52 oi = ((input_t *) ivar)->ii;
|
H A D | tst.OutputAliasTrans.d | 46 int oi; member 55 oi = ((struct dtrace_input_struct *) ivar)->ii;
|
H A D | tst.SimultaneousTranslators.d | 52 int oi; member 59 oi = ((struct input_struct1 *) ivar1)->ii1;
|
/freebsd/contrib/mandoc/ |
H A D | preconv.c | 32 preconv_encode(const struct buf *ib, size_t *ii, struct buf *ob, size_t *oi, in preconv_encode() argument 95 *oi += snprintf(ob->buf + *oi, 11, "\\[u%.4X]", accum); in preconv_encode() 104 *oi += snprintf(ob->buf + *oi, 11, in preconv_encode()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ConditionalCompares.cpp | 220 for (unsigned oi = 1, oe = I.getNumOperands(); oi != oe; oi += 2) { in trivialTailPHIs() local 221 MachineBasicBlock *MBB = I.getOperand(oi + 1).getMBB(); in trivialTailPHIs() 222 Register Reg = I.getOperand(oi).getReg(); in trivialTailPHIs() 245 for (unsigned oi = I.getNumOperands(); oi > 2; oi -= 2) { in updateTailPHIs() local 247 if (I.getOperand(oi - 1).getMBB() == CmpBB) { in updateTailPHIs() 248 I.removeOperand(oi - 1); in updateTailPHIs() 249 I.removeOperand(oi - 2); in updateTailPHIs()
|
/freebsd/bin/ed/ |
H A D | io.c | 251 int oi = 0; in get_tty_line() local 258 oi = 0; in get_tty_line() 276 if (i != oi) { in get_tty_line() 277 oi = i; in get_tty_line()
|
/freebsd/contrib/sendmail/contrib/ |
H A D | rmail.oldsys.patch | 51 args[i++] = "-oi"; /* Ignore '.' on a line by itself. */ 73 args[i++] = "-oi"; /* Ignore '.' on a line by itself. */
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/ |
H A D | RegisterInfoEmitter.cpp | 1375 for (unsigned oi = 1, oe = RC.getNumOrders(); oi != oe; ++oi) { in runTargetDesc() local 1376 ArrayRef<Record *> Elems = RC.getOrder(oi); in runTargetDesc() 1378 OS << " static const MCPhysReg AltOrder" << oi << "[] = {"; in runTargetDesc() 1388 for (unsigned oi = 1, oe = RC.getNumOrders(); oi != oe; ++oi) in runTargetDesc() local 1389 if (RC.getOrder(oi).empty()) in runTargetDesc() 1392 OS << "),\n ArrayRef(AltOrder" << oi; in runTargetDesc()
|
/freebsd/crypto/openssl/test/recipes/15-test_mp_rsa_data/ |
H A D | rsamplcm.pem | 42 771oi/VR098NBnQGHvp696HdhqUroY5vm5UxKC+9plcd2hGHfyVgzMrYbjpnoi/0
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | interworking.c | 1100 static int oi_element_match(const u8 *ie, const u8 *oi, size_t oi_len) in oi_element_match() argument 1125 if ((lens & 0x0f) == oi_len && os_memcmp(pos, oi, oi_len) == 0) in oi_element_match() 1129 if ((lens >> 4) == oi_len && os_memcmp(pos, oi, oi_len) == 0) in oi_element_match() 1134 os_memcmp(pos, oi, oi_len) == 0) in oi_element_match() 1141 static int oi_anqp_match(const struct wpabuf *anqp, const u8 *oi, in oi_anqp_match() argument 1158 if (len == oi_len && os_memcmp(pos, oi, oi_len) == 0) in oi_anqp_match() 1168 const u8 *oi, size_t oi_len) in oi_match() argument 1170 return oi_element_match(ie, oi, oi_len) || in oi_match() 1171 oi_anqp_match(anqp, oi, oi_len); in oi_match()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | IRInterpreter.cpp | 642 for (unsigned oi = 0, oe = ii.getNumOperands(); oi != oe; ++oi) { in CanInterpret() local 643 Value *operand = ii.getOperand(oi); in CanInterpret()
|
/freebsd/contrib/unbound/contrib/ |
H A D | redirect-bogus.patch | 132 oi[cfg->num_out_ifs++] = d; 133 cfg->out_ifs = oi;
|
/freebsd/contrib/unbound/util/ |
H A D | config_file.c | 881 char** oi = in config_set_option() local 883 if(!d || !oi) { free(d); free(oi); return -1; } in config_set_option() 885 memmove(oi, cfg->out_ifs, cfg->num_out_ifs*sizeof(char*)); in config_set_option() 888 oi[cfg->num_out_ifs++] = d; in config_set_option() 889 cfg->out_ifs = oi; in config_set_option()
|
/freebsd/contrib/wpa/src/ap/ |
H A D | ap_config.h | 211 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; member
|
H A D | ieee802_11_shared.c | 637 os_memcpy(pos, hapd->conf->roaming_consortium[i].oi, in hostapd_eid_roaming_consortium()
|
/freebsd/contrib/wpa/hostapd/ |
H A D | config_file.c | 1292 u8 oi[MAX_ROAMING_CONSORTIUM_LEN]; in parse_roaming_consortium() local 1297 hexstr2bin(pos, oi, len / 2)) { in parse_roaming_consortium() 1310 os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len); in parse_roaming_consortium()
|
/freebsd/sys/netpfil/ipfilter/netinet/ |
H A D | ip_state.c | 2838 int oi; in ipf_allowstateicmp() local 2864 oi = (backward << 1) + !fin->fin_out; in ipf_allowstateicmp() 2870 if (is->is_icmppkts[i] > is->is_pkts[oi]) { in ipf_allowstateicmp()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclObjC.cpp | 209 ObjCMethodDecl::param_const_iterator oi = Overridden->param_begin(), in CheckObjCMethodOverride() local 213 ni != ne && oi != oe; ++ni, ++oi) { in CheckObjCMethodOverride() 214 const ParmVarDecl *oldDecl = (*oi); in CheckObjCMethodOverride()
|
/freebsd/sys/dev/mlx5/mlx5_ib/ |
H A D | mlx5_ib_cq.c | 982 MLX5_SET(cqc, cqc, oi, 1); in mlx5_ib_create_cq()
|