Searched refs:back (Results 1 - 25 of 498) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/dev/e1000/
H A De1000_osdep.h151 bus_space_read_4(((struct e1000_osdep *)(hw)->back)->mem_bus_space_tag, \
152 ((struct e1000_osdep *)(hw)->back)->mem_bus_space_handle, offset)
156 bus_space_write_4(((struct e1000_osdep *)(hw)->back)->mem_bus_space_tag, \
157 ((struct e1000_osdep *)(hw)->back)->mem_bus_space_handle, offset, value)
162 bus_space_read_4(((struct e1000_osdep *)(hw)->back)->mem_bus_space_tag, \
163 ((struct e1000_osdep *)(hw)->back)->mem_bus_space_handle, \
167 bus_space_write_4(((struct e1000_osdep *)(hw)->back)->mem_bus_space_tag, \
168 ((struct e1000_osdep *)(hw)->back)->mem_bus_space_handle, \
172 bus_space_read_4(((struct e1000_osdep *)(hw)->back)->mem_bus_space_tag, \
173 ((struct e1000_osdep *)(hw)->back)
[all...]
H A De1000_osdep.c46 pci_write_config(((struct e1000_osdep *)hw->back)->dev, reg, *value, 2);
52 *value = pci_read_config(((struct e1000_osdep *)hw->back)->dev, reg, 2);
58 pci_write_config(((struct e1000_osdep *)hw->back)->dev, PCIR_COMMAND,
65 pci_write_config(((struct e1000_osdep *)hw->back)->dev, PCIR_COMMAND,
75 device_t dev = ((struct e1000_osdep *)hw->back)->dev;
89 device_t dev = ((struct e1000_osdep *)hw->back)->dev;
/freebsd-9.3-release/usr.bin/look/
H A Dlook.c96 unsigned char *back, *front; local
145 back = front + sb.st_size;
146 match *= (look(key, front, back));
185 look(wchar_t *string, unsigned char *front, unsigned char *back) argument
188 front = binary_search(string, front, back);
189 front = linear_search(string, front, back);
192 print_from(string, front, back);
198 * Binary search for "string" in memory between "front" and "back".
208 * back points to the beginning of a line at or after the first
213 * back
239 binary_search(wchar_t *string, unsigned char *front, unsigned char *back) argument
273 linear_search(wchar_t *string, unsigned char *front, unsigned char *back) argument
293 print_from(wchar_t *string, unsigned char *front, unsigned char *back) argument
318 compare(wchar_t *s1, unsigned char *s2, unsigned char *back) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp55 if (SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
57 return CondDirectiveStack.back();
73 SourceMgr.isBeforeInTranslationUnit(CondDirectiveLocs.back().getLoc(),
81 addCondDirectiveLoc(CondDirectiveLoc(Loc, CondDirectiveStack.back()));
88 addCondDirectiveLoc(CondDirectiveLoc(Loc, CondDirectiveStack.back()));
95 addCondDirectiveLoc(CondDirectiveLoc(Loc, CondDirectiveStack.back()));
103 addCondDirectiveLoc(CondDirectiveLoc(Loc, CondDirectiveStack.back()));
104 CondDirectiveStack.back() = Loc;
109 addCondDirectiveLoc(CondDirectiveLoc(Loc, CondDirectiveStack.back()));
110 CondDirectiveStack.back()
[all...]
H A DPPCaching.cpp43 CachedLexPos = BacktrackPositions.back();
91 Lex(CachedTokens.back());
94 return CachedTokens.back();
108 assert((BacktrackPositions.empty() || BacktrackPositions.back() < i) &&
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Format/
H A DContinuationIndenter.cpp95 if (!Current.CanBreakBefore && !(State.Stack.back().BreakBeforeClosingBrace &&
112 if (Current.isMemberAccess() && State.Stack.back().ContainsUnwrappedBuilder)
114 return !State.Stack.back().NoLineBreak;
122 if (State.Stack.back().BreakBeforeClosingBrace &&
133 State.Stack.back().BreakBeforeParameter && !Current.isTrailingComment() &&
137 State.Column > State.Stack.back().Indent && // Breaking saves columns.
171 State.Stack.back().BreakBeforeParameter)
176 if (Current.is(tok::lessless) && State.Stack.back().BreakBeforeParameter &&
177 State.Stack.back().FirstLessLess == 0)
184 State.Stack.back()
[all...]
/freebsd-9.3-release/sys/contrib/ia64/libuwx/src/
H A Duwx_scoreboard.c173 struct uwx_scoreboard *back; local
182 back = 0;
189 new->nextstack = back;
193 back = new;
198 /* Now go back down the stack, reversing the stack links to their */
201 back = 0;
204 new->nextstack = back;
205 TRACE_B_LABEL_REVERSE(back, new)
206 back = new;
210 /* The "back" pointe
227 struct uwx_scoreboard *back; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DCXXFieldCollector.h58 ++FieldCount.back();
64 return FieldCount.back();
/freebsd-9.3-release/lib/libc/i386/sys/
H A Dsbrk.S58 jz back
68 back: label
79 jz back
86 back: label
/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-packet.h66 uint64_t back : 4; /**< Indicates the amount to back up to get to the buffer start in cache lines. In most cases member in struct:cvmx_buf_ptr::__anon6543
H A Dcvmx-helper-util.h190 start_of_buffer = ((buffer_ptr.s.addr >> 7) - buffer_ptr.s.back) << 7;
200 /* Remember the back pointer is in cache lines, not 64bit words */
201 start_of_buffer = ((buffer_ptr.s.addr >> 7) - buffer_ptr.s.back) << 7;
/freebsd-9.3-release/sys/mips/cavium/octe/
H A Dethernet-util.h42 return cvmx_phys_to_ptr(((packet_ptr.s.addr >> 7) - packet_ptr.s.back) << 7);
/freebsd-9.3-release/contrib/llvm/include/llvm/ADT/
H A DSCCIterator.h82 while (VisitStack.back().second != GT::child_end(VisitStack.back().first)) {
84 NodeType *childN = *VisitStack.back().second++;
92 if (MinVisitNumStack.back() > childNum)
93 MinVisitNumStack.back() = childNum;
103 assert(VisitStack.back().second ==GT::child_end(VisitStack.back().first));
104 NodeType *visitingN = VisitStack.back().first;
105 unsigned minVisitNum = MinVisitNumStack.back();
108 if (!MinVisitNumStack.empty() && MinVisitNumStack.back() > minVisitNu
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/Serialization/
H A DContinuousRangeMap.h65 if (!Rep.empty() && Rep.back() == Val)
68 assert((Rep.empty() || Rep.back().first < Val.first) &&
104 reference back() { return Rep.back(); } function in class:clang::ContinuousRangeMap
105 const_reference back() const { return Rep.back(); } function in class:clang::ContinuousRangeMap
/freebsd-9.3-release/contrib/ncurses/form/
H A Dfld_attr.c107 GEN_FIELD_ATTR_SET_FCT(back)
117 GEN_FIELD_ATTR_GET_FCT(back)
H A Dfld_dup.c75 New_Field->back = field->back;
H A Dfld_link.c80 New_Field->back = field->back;
/freebsd-9.3-release/contrib/ncurses/menu/
H A Dm_attribs.c110 GEN_MENU_ATTR_SET_FCT(back)
121 GEN_MENU_ATTR_GET_FCT(back)
/freebsd-9.3-release/sys/dev/ixgb/
H A Dif_ixgb_osdep.h99 bus_space_read_4( ((struct ixgb_osdep *)(a)->back)->mem_bus_space_tag, \
100 ((struct ixgb_osdep *)(a)->back)->mem_bus_space_handle, \
104 bus_space_write_4( ((struct ixgb_osdep *)(a)->back)->mem_bus_space_tag, \
105 ((struct ixgb_osdep *)(a)->back)->mem_bus_space_handle, \
110 bus_space_read_4( ((struct ixgb_osdep *)(a)->back)->mem_bus_space_tag, \
111 ((struct ixgb_osdep *)(a)->back)->mem_bus_space_handle, \
115 bus_space_write_4( ((struct ixgb_osdep *)(a)->back)->mem_bus_space_tag, \
116 ((struct ixgb_osdep *)(a)->back)->mem_bus_space_handle, \
/freebsd-9.3-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.h72 OpBegins.push_back(OpBegins.back() + 1);
78 OpBegins.push_back(OpBegins.back() + 2);
83 OpBegins.push_back(OpBegins.back() + Size);
/freebsd-9.3-release/contrib/binutils/bfd/
H A Delfcore.h156 const struct elf_backend_data *back; local
160 back = (const struct elf_backend_data *) (*target_ptr)->backend_data;
161 if (back->elf_machine_code == i_ehdrp->e_machine
162 || (back->elf_machine_alt1 != 0
163 && i_ehdrp->e_machine == back->elf_machine_alt1)
164 || (back->elf_machine_alt2 != 0
165 && i_ehdrp->e_machine == back->elf_machine_alt2))
/freebsd-9.3-release/contrib/llvm/include/llvm/MC/
H A DMCFunction.h131 const MCBasicBlock* back() const { return Blocks.back(); } function in class:llvm::MCFunction
132 MCBasicBlock* back() { return Blocks.back(); } function in class:llvm::MCFunction
/freebsd-9.3-release/contrib/llvm/utils/TableGen/
H A DAsmWriterInst.h105 Operands.back().OperandType == AsmWriterOperand::isLiteralTextOperand)
106 Operands.back().Str.append(Str);
/freebsd-9.3-release/lib/libc/amd64/sys/
H A Dsbrk.S60 jz back
77 back: label
/freebsd-9.3-release/sys/dev/ixgbe/
H A Dixgbe_osdep.h199 bus_space_read_4( ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_tag, \
200 ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_handle, \
204 bus_space_write_4( ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_tag, \
205 ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_handle, \
210 bus_space_read_4( ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_tag, \
211 ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_handle, \
215 bus_space_write_4( ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_tag, \
216 ((struct ixgbe_osdep *)(a)->back)->mem_bus_space_handle, \

Completed in 250 milliseconds

1234567891011>>