HomeSort by relevance Sort by last modified time
    Searched refs:Next (Results 76 - 100 of 1236) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream_impl_lite.h 64 // the stream is destroyed. If a block_size is given, calls to Next()
66 // first call to Next() returns the entire array. block_size is mainly
73 bool Next(const void** data, int* size);
85 int last_returned_size_; // How many bytes we returned last time Next()
98 // the stream is destroyed. If a block_size is given, calls to Next()
100 // first call to Next() returns the entire array. block_size is mainly
107 bool Next(void** data, int* size);
117 int last_returned_size_; // How many bytes we returned last time Next()
133 // the first call to Next() will return at least n bytes of buffer
139 bool Next(void** data, int* size)
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/MakeDeps/
MakeDeps.c 35 struct _STRING_LIST *Next;
100 struct _SYMBOL *Next;
245 TempList = ProcessedFiles.Next;
246 while (ProcessedFiles.Next != NULL) {
247 TempList = ProcessedFiles.Next->Next;
248 free (ProcessedFiles.Next->Str);
249 free (ProcessedFiles.Next);
250 ProcessedFiles.Next = TempList;
291 File = File->Next;
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/
VfrServices.cpp 191 IFR_BYTE *Next;
263 Curr = Curr->Next;
314 Curr = Curr->Next;
379 if (Curr->Next != NULL) {
380 BytesLeftThisOpcode = (UINT32)Curr->Next->OpcodeByte;
389 Curr = Curr->Next;
413 if (Curr->Next == NULL) {
417 Count = (UINT32)Curr->Next->OpcodeByte;
491 // Skip to next opcode
499 Curr = Curr->Next;
    [all...]
  /external/clang/lib/Format/
FormatToken.h 210 /// \brief The length of following tokens until the next natural split point,
211 /// or the next token that can be broken.
253 /// with the same precedence, points to the next operator.
267 /// \brief The next token in the unwrapped line.
268 FormatToken *Next = nullptr;
301 /// following the ``Next`` pointers, ignoring comments.
322 (!ColonRequired || (Next && Next->is(tok::colon)));
329 return is(tok::at) && Next && (Next->isObjCAtKeyword(tok::objc_public) |
    [all...]
  /prebuilts/go/darwin-x86/src/container/ring/
ring.go 15 next, prev *Ring
20 r.next = r
25 // Next returns the next ring element. r must not be empty.
26 func (r *Ring) Next() *Ring {
27 if r.next == nil {
30 return r.next
35 if r.next == nil {
45 if r.next == nil {
55 r = r.next
    [all...]
  /prebuilts/go/linux-x86/src/container/ring/
ring.go 15 next, prev *Ring
20 r.next = r
25 // Next returns the next ring element. r must not be empty.
26 func (r *Ring) Next() *Ring {
27 if r.next == nil {
30 return r.next
35 if r.next == nil {
45 if r.next == nil {
55 r = r.next
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
BmMisc.c 125 save them into the variables for next boot. It resets the system when
145 UINT32 Next;
210 // Use a heuristic to adjust the Memory Type Information for the next boot
212 DEBUG ((EFI_D_INFO, "Memory Previous Current Next \n"));
233 Next = Previous;
237 // Write next varible to 125% * current when the pre-allocated memory is:
243 Next = Current + (Current >> 2);
246 Next = Current + (Current >> 2);
248 if (Next > 0 && Next < 4) {
    [all...]
  /external/libtextclassifier/common/
fml-parser.cc 69 void FMLParser::Next() {
70 // Move to the next input character. If we are at a line break update line
86 while (!eos() && CurrentChar() != '\n') Next();
89 while (!eos() && isspace(CurrentChar())) Next();
95 // Record start position for next item.
108 Next();
109 while (!eos() && IsValidCharInsideNumber(CurrentChar())) Next();
117 Next();
124 Next();
128 Next();
    [all...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFixIrreducibleControlFlow.cpp 125 MachineBasicBlock *Next() {
151 MachineBasicBlock *Next = Top.Next();
152 if (Next == Header || (Loop && !Loop->contains(Next)))
154 if (LLVM_LIKELY(OnStack.insert(Next).second)) {
155 if (!Visited.insert(Next).second) {
156 OnStack.erase(Next);
159 MachineLoop *InnerLoop = MLI.getLoopFor(Next);
163 LoopWorklist.push_back(SuccessorList(Next));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciDxe/
UsbHcMem.c 253 for (Block = Head; Block != NULL; Block = Block->Next) {
287 Block->Next = Head->Next;
288 Head->Next = Block;
335 for (Block = Head; Block != NULL; Block = Block->Next) {
336 if (Block->Next == BlockToUnlink) {
337 Block->Next = BlockToUnlink->Next;
338 BlockToUnlink->Next = NULL;
409 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/EhciPei/
UsbHcMem.c 103 Block->Next = NULL;
212 Block->Next = Head->Next;
213 Head->Next = Block;
259 for (Block = Head; Block != NULL; Block = Block->Next) {
260 if (Block->Next == BlockToUnlink) {
261 Block->Next = BlockToUnlink->Next;
262 BlockToUnlink->Next = NULL;
340 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/UhciDxe/
UsbHcMem.c 252 for (Block = Head; Block != NULL; Block = Block->Next) {
285 Block->Next = Head->Next;
286 Head->Next = Block;
333 for (Block = Head; Block != NULL; Block = Block->Next) {
334 if (Block->Next == BlockToUnlink) {
335 Block->Next = BlockToUnlink->Next;
336 BlockToUnlink->Next = NULL;
407 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/
UsbHcMem.c 253 for (Block = Head; Block != NULL; Block = Block->Next) {
287 Block->Next = Head->Next;
288 Head->Next = Block;
335 for (Block = Head; Block != NULL; Block = Block->Next) {
336 if (Block->Next == BlockToUnlink) {
337 Block->Next = BlockToUnlink->Next;
338 BlockToUnlink->Next = NULL;
409 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
    [all...]
  /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Pei/
UsbHcMem.c 102 Block->Next = NULL;
214 Block->Next = Head->Next;
215 Head->Next = Block;
262 for (Block = Head; Block != NULL; Block = Block->Next) {
263 if (Block->Next == BlockToUnlink) {
264 Block->Next = BlockToUnlink->Next;
265 BlockToUnlink->Next = NULL;
342 for (Block = Pool->Head->Next; Block != NULL; Block = Pool->Head->Next) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iptypes.h 37 struct _IP_ADDR_STRING *Next;
44 struct _IP_ADAPTER_INFO *Next;
78 struct _IP_ADAPTER_UNICAST_ADDRESS_XP *Next;
96 struct _IP_ADAPTER_UNICAST_ADDRESS_LH *Next;
123 struct _IP_ADAPTER_ANYCAST_ADDRESS_XP *Next;
137 struct _IP_ADAPTER_MULTICAST_ADDRESS_XP *Next;
155 struct _IP_ADAPTER_DNS_SERVER_ADDRESS_XP *Next;
169 struct _IP_ADAPTER_PREFIX_XP *Next;
184 struct _IP_ADAPTER_WINS_SERVER_ADDRESS_LH *Next;
200 struct _IP_ADAPTER_GATEWAY_ADDRESS_LH *Next;
    [all...]
  /external/llvm/lib/CodeGen/
MachineRegisterInfo.cpp 206 // Next is NULL on the last list element.
212 MO->Contents.Reg.Next = nullptr;
229 MO->Contents.Reg.Next = Head;
233 MO->Contents.Reg.Next = nullptr;
234 Last->Contents.Reg.Next = MO;
246 MachineOperand *Next = MO->Contents.Reg.Next;
249 // Prev links are circular, next link is NULL instead of looping back to Head.
251 HeadRef = Next;
253 Prev->Contents.Reg.Next = Next
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.c 15 * next paragraph) shall be included in all copies or substantial
72 struct rc_instruction * first = loop->BeginLoop->Next;
78 for(ptr = first; ptr != last->Next; ptr = ptr->Next){
219 for(inst = c->Program.Instructions.Next; inst != loop->BeginLoop;
220 inst = inst->Next){
236 for(inst = loop->BeginLoop->Next; end_loops > 0; inst = inst->Next){
340 for(ptr = loop->BeginLoop->Next; !loop->EndLoop; ptr = ptr->Next) {
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 95 EFI_DEVICE_PATH_PROTOCOL *Next;
118 // After this call DevicePath points to the next Instance
126 Next = Instance;
127 while (!IsDevicePathEndType (Next)) {
128 Next = NextDevicePathNode (Next);
131 SetDevicePathEndNode (Next);
180 // change, so next time will do the dispatch, then dispatch's status
184 // next connection
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Override/IntelFrameworkModulePkg/Library/GenericBdsLib/
BdsConnect.c 95 EFI_DEVICE_PATH_PROTOCOL *Next;
118 // After this call DevicePath points to the next Instance
126 Next = Instance;
127 while (!IsDevicePathEndType (Next)) {
128 Next = NextDevicePathNode (Next);
131 SetDevicePathEndNode (Next);
180 // change, so next time will do the dispatch, then dispatch's status
184 // next connection
  /external/c-ares/
ares_iphlpapi.h 128 struct _IP_ADAPTER_UNICAST_ADDRESS *Next;
146 struct _IP_ADAPTER_ANYCAST_ADDRESS *Next;
158 struct _IP_ADAPTER_MULTICAST_ADDRESS *Next;
170 struct _IP_ADAPTER_DNS_SERVER_ADDRESS *Next;
182 struct _IP_ADAPTER_PREFIX *Next;
195 struct _IP_ADAPTER_ADDRESSES *Next;
  /external/libchrome/base/metrics/
sample_map_unittest.cc 92 it->Next();
98 it->Next();
104 it->Next();
135 it->Next();
143 it->Next();
161 EXPECT_DEATH(it->Next(), "");
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl.h 67 // should be read and returned with each call to Next(). Otherwise,
91 bool Next(const void** data, int* size);
145 // that should be returned by Next(). Otherwise, a reasonable default
174 bool Next(void** data, int* size);
219 // should be read and returned with each call to Next(). Otherwise,
225 bool Next(const void** data, int* size);
263 // that should be returned by Next(). Otherwise, a reasonable default
269 bool Next(void** data, int* size);
312 bool Next(const void** data, int* size);
338 bool Next(const void** data, int* size)
    [all...]
zero_copy_stream_impl_lite.h 71 // the stream is destroyed. If a block_size is given, calls to Next()
73 // first call to Next() returns the entire array. block_size is mainly
80 bool Next(const void** data, int* size);
92 int last_returned_size_; // How many bytes we returned last time Next()
105 // the stream is destroyed. If a block_size is given, calls to Next()
107 // first call to Next() returns the entire array. block_size is mainly
114 bool Next(void** data, int* size);
124 int last_returned_size_; // How many bytes we returned last time Next()
142 // the first call to Next() will return at least n bytes of buffer
148 bool Next(void** data, int* size)
    [all...]
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 67 // should be read and returned with each call to Next(). Otherwise,
91 bool Next(const void** data, int* size);
145 // that should be returned by Next(). Otherwise, a reasonable default
174 bool Next(void** data, int* size);
219 // should be read and returned with each call to Next(). Otherwise,
225 bool Next(const void** data, int* size);
263 // that should be returned by Next(). Otherwise, a reasonable default
269 bool Next(void** data, int* size);
312 bool Next(const void** data, int* size);
338 bool Next(const void** data, int* size)
    [all...]
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/io/
zero_copy_stream_impl.h 67 // should be read and returned with each call to Next(). Otherwise,
91 bool Next(const void** data, int* size);
145 // that should be returned by Next(). Otherwise, a reasonable default
174 bool Next(void** data, int* size);
219 // should be read and returned with each call to Next(). Otherwise,
225 bool Next(const void** data, int* size);
263 // that should be returned by Next(). Otherwise, a reasonable default
269 bool Next(void** data, int* size);
312 bool Next(const void** data, int* size);
338 bool Next(const void** data, int* size)
    [all...]

Completed in 729 milliseconds

1 2 34 5 6 7 8 91011>>