HomeSort by: relevance | last modified time | path
    Searched defs:index (Results 1 - 25 of 1691) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/lib/libc/arch/vax/string/
index.S 1 /* $NetBSD: index.S,v 1.6 2020/09/29 02:58:51 msaitoh Exp $ */
36 * index(cp, c)
42 RCSID("$NetBSD: index.S,v 1.6 2020/09/29 02:58:51 msaitoh Exp $")
47 ENTRY(index, 0) function
64 END(index)
  /src/lib/libc/string/
Lint_index.c 12 index(const char *src, int c) function
  /src/external/gpl3/binutils/dist/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /src/external/gpl3/binutils.old/dist/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /src/external/gpl3/gcc/dist/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /src/external/gpl3/gcc.old/dist/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /src/external/gpl3/gdb/dist/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /src/external/gpl3/gdb.old/dist/libiberty/
index.c 1 /* Stub implementation of (obsolete) index(). */
5 @deftypefn Supplemental char* index (char *@var{s}, int @var{c})
8 the string @var{s}, or @code{NULL} if not found. The use of @code{index} is
18 index (const char *s, int c) function
  /src/sys/external/bsd/gnu-efi/dist/apps/
t4.c 9 UINTN index; local
14 uefi_call_wrapper(systab->BootServices->WaitForEvent, 3, 1, &systab->ConIn->WaitForKey, &index);
  /src/sys/fs/v7fs/
v7fs_datablock.h 48 v7fs_daddr_t index[3]; member in struct:v7fs_daddr_map
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
IndexingAction.h 1 //===--- IndexingAction.h - Frontend index action ---------------*- C++ -*-===//
14 #include "clang/Index/IndexingOptions.h"
32 namespace index { namespace in namespace:clang
71 } // namespace index
USRGeneration.h 24 namespace index { namespace in namespace:clang
97 } // namespace index
CommentToXML.h 22 namespace index { namespace in namespace:clang
41 } // namespace index
  /src/external/bsd/nsd/dist/simdzone/src/fallback/
bits.h 17 unsigned long index; local
18 if (_BitScanForward64(&index, mask))
19 return index;
26 unsigned long index; local
27 if (_BitScanReverse64(&index, mask))
28 return 63 - index;
  /src/external/mit/isl/dist/
isl_ffs.c 11 * _BitScanForward returns 1 if mask is non-zero and sets index
18 unsigned long index, mask = i; local
20 non_zero = _BitScanForward(&index, mask);
22 return non_zero ? 1 + index : 0;
  /src/sys/arch/arm/sunxi/
sunxi_ccu_mux.c 45 u_int index; local
52 for (index = 0; index < mux->nparents; index++) {
53 if (mux->parents[index] != NULL &&
54 strcmp(mux->parents[index], name) == 0)
57 if (index == mux->nparents)
62 val |= __SHIFTIN(index, mux->sel);
73 u_int index; local
79 index = __SHIFTOUT(val, mux->sel)
    [all...]
  /src/external/gpl2/gettext/dist/gettext-tools/libgrep/
kwset.h 26 int index; /* Index number of matching keyword. */ member in struct:kwsmatch
40 Return NULL for success, or an error message. Remember an index
52 if foundindex is non-NULL, store the index of the particular
  /src/external/gpl2/grep/dist/src/
kwset.h 27 int index; /* Index number of matching keyword. */ member in struct:kwsmatch
41 Return NULL for success, or an error message. Remember an index
53 if foundindex is non-NULL, store the index of the particular
  /src/external/gpl3/gdb.old/dist/gdb/mi/
mi-getopt.h 24 requires an argument. INDEX is returned to identify the option. */
29 int index; member in struct:mi_opt
39 On entry OPTIND contains the index of the next element of ARGV that
40 needs parsing. OPTIND is updated to indicate the index of the next
43 If ARGV[OPTIND] is an option, that options INDEX is returned.
  /src/external/gpl3/gdb/dist/gdb/mi/
mi-getopt.h 24 requires an argument. INDEX is returned to identify the option. */
29 int index; member in struct:mi_opt
39 On entry OPTIND contains the index of the next element of ARGV that
40 needs parsing. OPTIND is updated to indicate the index of the next
43 If ARGV[OPTIND] is an option, that options INDEX is returned.
  /src/sys/dev/fdt/
fdt_userconf.c 47 int chosen, index; local
58 index = 0;
61 index++, NULL);
  /src/sys/external/bsd/drm2/dist/drm/amd/amdgpu/
amdgpu_vf_error.c 38 int index; local
47 index = adev->virt.vf_errors.write_count % AMDGPU_VF_ERROR_ENTRY_SIZE;
48 adev->virt.vf_errors.code [index] = error_code;
49 adev->virt.vf_errors.flags [index] = error_flags;
50 adev->virt.vf_errors.data [index] = error_data;
60 int index; local
81 index =adev->virt.vf_errors.read_count % AMDGPU_VF_ERROR_ENTRY_SIZE;
82 data1 = AMDGIM_ERROR_CODE_FLAGS_TO_MAILBOX(adev->virt.vf_errors.code[index],
83 adev->virt.vf_errors.flags[index]);
84 data2 = adev->virt.vf_errors.data[index] & 0xFFFFFFFF
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/
clc37b.h 9 __u8 index; member in struct:nvc37b_window_imm_channel_dma_v0
clc37e.h 9 __u8 index; member in struct:nvc37e_window_channel_dma_v0
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/ce/
nouveau_nvkm_engine_ce_gf100.c 38 const int index = ce->engine.subdev.index - NVKM_ENGINE_CE0; local
39 nvkm_wr32(device, ce->addr + 0x084, index);
71 gf100_ce_new(struct nvkm_device *device, int index,
74 if (index == NVKM_ENGINE_CE0) {
75 return nvkm_falcon_new_(&gf100_ce0, device, index, true,
78 if (index == NVKM_ENGINE_CE1) {
79 return nvkm_falcon_new_(&gf100_ce1, device, index, true,

Completed in 60 milliseconds

1 2 3 4 5 6 7 8 91011>>