Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for va_start (0.26 sec)

  1. tensorflow/c/logging.cc

          break;
      }
    }
    
    void TF_VLog(int level, const char* fmt, ...) {
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      VLOG(level) << message;
    }
    
    void TF_DVLog(int level, const char* fmt, ...) {
      va_list args;
      va_start(args, fmt);
      auto message = BuildMessage(fmt, args);
      va_end(args);
      DVLOG(level) << message;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 18 13:10:33 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_android.c

    	// redirect to /dev/null. And when running a test binary
    	// via adb shell, it's easy to miss logcat.
    
    	fprintf(stderr, "runtime/cgo: ");
    	va_start(ap, format);
    	vfprintf(stderr, format, ap);
    	va_end(ap);
    	fprintf(stderr, "\n");
    
    	va_start(ap, format);
    	__android_log_vprint(ANDROID_LOG_FATAL, "runtime/cgo", format, ap);
    	va_end(ap);
    
    	abort();
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/cc/gradients/linalg_grad.cc

      // axes.
      int bx_start, by_start;
      absl::optional<int> bx_end, by_end;
      std::tie(bx_start, bx_end) = EinsumGetBcastSubshape(x_subs);
      std::tie(by_start, by_end) = EinsumGetBcastSubshape(y_subs);
    
      // Sum the gradient across the broadcasted axes.
      auto args = internal::BroadcastGradientArgs(
          scope, Slice1dHelper(scope, x_shape, bx_start, bx_end),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/base/StringsTest.java

      public void testPadStart_noPadding() {
        assertSame("", Strings.padStart("", 0, '-'));
        assertSame("x", Strings.padStart("x", 0, '-'));
        assertSame("x", Strings.padStart("x", 1, '-'));
        assertSame("xx", Strings.padStart("xx", 0, '-'));
        assertSame("xx", Strings.padStart("xx", 2, '-'));
      }
    
      public void testPadStart_somePadding() {
        assertEquals("-", Strings.padStart("", 1, '-'));
        assertEquals("--", Strings.padStart("", 2, '-'));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. 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)
  8. src/main/java/jcifs/smb1/util/MimeMap.java

            byte[] buf = new byte[16];
            byte[] ext = extension.toLowerCase().getBytes( "ASCII" );
    
            state = ST_START;
            t = x = i = 0;
            for( off = 0; off < inLen; off++ ) {
                ch = in[off];
                switch( state ) {
                    case ST_START:
                        if( ch == ' ' || ch == '\t' ) {
                            break;
                        } else if( ch == '#' ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  9. src/runtime/pprof/testdata/README

    These binaries were generated by:
    
    $ cat empty.s
    .global _start
    _start:
    $ as --32 -o empty.o empty.s && ld  --build-id -m elf_i386 -o test32 empty.o
    $ as --64 -o empty.o empty.s && ld --build-id -o test64 empty.o
    $ powerpc-linux-gnu-as -o empty.o empty.s && powerpc-linux-gnu-ld --build-id -o test32be empty.o
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 08 01:09:18 UTC 2017
    - 411 bytes
    - Viewed (0)
  10. 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)
Back to top