Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for va_start (0.22 sec)

  1. src/runtime/cgo/gcc_fatalf.c

    #include <stdarg.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include "libcgo.h"
    
    void
    fatalf(const char* format, ...)
    {
    	va_list ap;
    
    	fprintf(stderr, "runtime/cgo: ");
    	va_start(ap, format);
    	vfprintf(stderr, format, ap);
    	va_end(ap);
    	fprintf(stderr, "\n");
    	abort();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 526 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/main2.c

    static jmp_buf jmp;
    static char* nullPointer;
    
    // An arbitrary function which requires proper stack alignment; see
    // http://golang.org/issue/17641.
    static void callWithVarargs(void* dummy, ...) {
    	va_list args;
    	va_start(args, dummy);
    	va_end(args);
    }
    
    // Signal handler for SIGSEGV on a C thread.
    static void segvHandler(int signo, siginfo_t* info, void* ctxt) {
    	sigset_t mask;
    	int i;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/value_iostream.h

        o << ": ";
        o << x.second;
        o << ", ";
      }
      o << "}";
      return o;
    }
    template <class IT>
    inline std::ostream& OutList(std::ostream& o, IT v_start, IT const v_end,
                                 char start, char end) {
      o << start;
      for (IT p = v_start; p != v_end; ++p) {
        o << *p;
        o << ", ";
      }
      o << end;
      return o;
    }
    
    class TaggedValueIOStreamVisitor {
      std::ostream& o_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. src/runtime/rt0_aix_ppc64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    #include "asm_ppc64x.h"
    
    // _rt0_ppc64_aix is a function descriptor of the entrypoint function
    // __start. This name is needed by cmd/link.
    DEFINE_PPC64X_FUNCDESC(_rt0_ppc64_aix, __start<>)
    
    // The starting function must return in the loader to
    // initialise some libraries, especially libthread which
    // creates the main thread and adds the TLS in R13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/cmd/trace/jsontrace.go

    	opts.tasks = task.Descendents()
    	slices.SortStableFunc(opts.tasks, func(a, b *trace.UserTaskSummary) int {
    		aStart, bStart := parsed.startTime(), parsed.startTime()
    		if a.Start != nil {
    			aStart = a.Start.Time()
    		}
    		if b.Start != nil {
    			bStart = b.Start.Time()
    		}
    		if a.Start != b.Start {
    			return cmp.Compare(aStart, bStart)
    		}
    		// Break ties with the end time.
    		aEnd, bEnd := parsed.endTime(), parsed.endTime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_composite_to_tfl_custom.cc

          auto fbb = std::make_unique<flexbuffers::Builder>();
          size_t map_start = fbb->StartMap();
          for (const NamedAttribute& pair : composite.getCompositeAttributes()) {
            // Allows skipping unsupported attributes, will warn.
            (void)BuildOption(fbb.get(), op, pair);
          }
          fbb->EndMap(map_start);
          fbb->Finish();
          custom_option_buffer.assign(fbb->GetBuffer().begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelTypeInitializationException.java

                    s.append(String.format("%n    %s- %s", padding, modelType.getName()));
                }
            }
        }
    
        private static String pad(int padding) {
            return Strings.padStart("", padding * 4, ' ');
        }
    
        private static boolean isScalarCollection(ModelType<?> propertyType, boolean declaredAsHavingUnmanagedType) {
            Class<?> concreteClass = propertyType.getConcreteClass();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top