HomeSort by relevance Sort by last modified time
    Searched defs:id (Results 326 - 350 of 2872) sorted by null

<<11121314151617181920>>

  /external/strace/tests/
shmxt.c 6 static int id = -1; variable
11 shmctl(id, IPC_RMID, NULL);
12 id = -1;
35 id = shmget(IPC_PRIVATE, 1, 0600);
36 if (id < 0)
45 shmat(id, NULL, SHM_REMAP);
47 SHMAT, id, errno2name());
49 void *shmaddr = shmat(id, NULL, SHM_RDONLY);
52 printf("%s(%d, NULL, SHM_RDONLY) = %p\n", SHMAT, id, shmaddr);
61 void *shmaddr2 = shmat(id, shmaddr, SHM_RND)
    [all...]
  /external/strace/tests-m32/
nlattr_ifla_brport.c 76 static const struct ifla_bridge_id id = { local
82 IFLA_BRPORT_ROOT_ID, pattern, id,
85 id.prio[0], id.prio[1],
86 id.addr[0], id.addr[1], id.addr[2],
87 id.addr[3], id.addr[4], id.addr[5]))
    [all...]
semop.c 19 static int id = -1; variable
24 semctl(id, 0, IPC_RMID, 0);
25 id = -1;
38 id = semget(IPC_PRIVATE, 1, 0600);
39 if (id < 0)
44 if (semctl(id, 0, SETVAL, sem_union) == -1)
74 if (semop(id, sem_b, 1))
76 printf("semop(%d, [{0, 1, SEM_UNDO}], 1) = 0\n", id);
79 if (semop(id, sem_b, 1))
81 printf("semop(%d, [{0, -1, SEM_UNDO}], 1) = 0\n", id);
    [all...]
shmxt.c 6 static int id = -1; variable
11 shmctl(id, IPC_RMID, NULL);
12 id = -1;
35 id = shmget(IPC_PRIVATE, 1, 0600);
36 if (id < 0)
45 shmat(id, NULL, SHM_REMAP);
47 SHMAT, id, errno2name());
49 void *shmaddr = shmat(id, NULL, SHM_RDONLY);
52 printf("%s(%d, NULL, SHM_RDONLY) = %p\n", SHMAT, id, shmaddr);
61 void *shmaddr2 = shmat(id, shmaddr, SHM_RND)
    [all...]
  /external/strace/tests-mx32/
nlattr_ifla_brport.c 76 static const struct ifla_bridge_id id = { local
82 IFLA_BRPORT_ROOT_ID, pattern, id,
85 id.prio[0], id.prio[1],
86 id.addr[0], id.addr[1], id.addr[2],
87 id.addr[3], id.addr[4], id.addr[5]))
    [all...]
semop.c 19 static int id = -1; variable
24 semctl(id, 0, IPC_RMID, 0);
25 id = -1;
38 id = semget(IPC_PRIVATE, 1, 0600);
39 if (id < 0)
44 if (semctl(id, 0, SETVAL, sem_union) == -1)
74 if (semop(id, sem_b, 1))
76 printf("semop(%d, [{0, 1, SEM_UNDO}], 1) = 0\n", id);
79 if (semop(id, sem_b, 1))
81 printf("semop(%d, [{0, -1, SEM_UNDO}], 1) = 0\n", id);
    [all...]
shmxt.c 6 static int id = -1; variable
11 shmctl(id, IPC_RMID, NULL);
12 id = -1;
35 id = shmget(IPC_PRIVATE, 1, 0600);
36 if (id < 0)
45 shmat(id, NULL, SHM_REMAP);
47 SHMAT, id, errno2name());
49 void *shmaddr = shmat(id, NULL, SHM_RDONLY);
52 printf("%s(%d, NULL, SHM_RDONLY) = %p\n", SHMAT, id, shmaddr);
61 void *shmaddr2 = shmat(id, shmaddr, SHM_RND)
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
ValidateLimitations.h 22 int id; // symbol id. member in struct:TLoopInfo::TIndex
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
validate_memory_semantics.cpp 30 const auto id = inst->GetOperandAs<const uint32_t>(operand_index); local
33 std::tie(is_int32, is_const_int32, value) = _.EvalInt32IfConst(id);
  /external/swiftshader/third_party/SPIRV-Tools/test/
name_mapper_test.cpp 39 uint32_t id; member in struct:spvtools::__anon41317::NameIdCase
52 EXPECT_THAT(mapper(GetParam().id), Eq(GetParam().expected_name))
54 << " for id " << GetParam().id;
  /external/swiftshader/third_party/SPIRV-Tools/test/val/
val_decoration_test.cpp 43 ; Since %1 is used first in Decoration, it gets id 1.
45 const uint32_t id = 1; local
50 vstate_->id_decorations(id),
107 HasSubstr("Index 1 provided in OpMemberDecorate for struct <id> "
143 // Decoration group is applied to id 1, 2, 3, and 4. Note that id 1 (which is
144 // the decoration group id) also has all the decorations.
209 // Decoration group is applied to id 2, 3, and 4.
283 "structure). Structure id 1 does not meet this requirement."));
303 HasSubstr("Structure <id> 1[%_struct_1] contains members with
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
buffer_value.h 91 // Id is a unique identifier for the BufferValue to facilitate efficient
93 using Id = int64;
101 Id id() const { return id_; } function in class:xla::BufferValue
160 BufferValue(HloInstruction* instruction, const ShapeIndex& index, Id id);
170 Id id_ : 62;
hlo_buffer.h 75 using Id = int64;
77 // Predicate comparing HloBuffers by increasing id, useful for std::sort.
79 return a->id() < b->id();
82 // Predicate comparing HloBuffers by equal id, useful for std::unique.
84 return a->id() == b->id();
87 HloBuffer(Id id, absl::Span<const HloValue* const> values)
88 : id_(id), values_(values.begin(), values.end()) {
91 Id id() const { return id_; } function in class:xla::HloBuffer
    [all...]
  /external/tensorflow/tensorflow/core/framework/
session_state.h 62 int64 id; member in struct:tensorflow::TensorStore::TensorAndKey
66 return strings::StrCat(tensor_name, ";", id, ";", device_name);
  /external/tensorflow/tensorflow/core/graph/
tensor_id_test.cc 82 TensorId id; local
86 id = ParseTensorName(names[index++ % names.size()]);
87 sum += id.second;
  /external/tensorflow/tensorflow/core/grappler/inputs/
file_input_yielder.cc 117 const string id = local
122 GrapplerItemFromMetaGraphDef(id, metagraph, cfg);
  /external/tensorflow/tensorflow/core/grappler/optimizers/
meta_optimizer.h 89 explicit GraphOptimizationResult(const string& id) : id(id) {}
90 string id; member in struct:tensorflow::grappler::MetaOptimizer::GraphOptimizationResult
123 // `grappler_item_id': Grappler item id (e.g. optimized function name).
  /external/tensorflow/tensorflow/core/kernels/
session_ops.cc 45 int64 id = ctx->session_state()->GetNewId(); variable
46 TensorStore::TensorAndKey tk{val, id, requested_device()};
  /external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
OvicDetectionResult.java 26 // id of the image.
27 public int id = -1; field in class:OvicDetectionResult
40 public void resetTo(Long latency, int id) {
43 this.id = id;
  /external/u-boot/arch/arm/cpu/arm926ejs/armada100/
cpu.c 77 u32 id; local
81 id = readl(&cpuregs->chip_id);
82 printf("SoC: Armada 88AP%X-%X\n", (id & 0xFFF), (id >> 0x10));
  /external/u-boot/arch/arm/include/asm/arch-am33xx/
clk_synthesizer.h 26 * @id: The id of synthesizer
33 u32 id; member in struct:clk_synth
  /external/u-boot/arch/arm/include/asm/arch-ls102xa/
ls102xa_stream_id.h 13 .id = { idA }, .num_ids = 1, \
20 .id = { idA, idB }, .num_ids = 2, \
59 u32 id[2]; member in struct:liodn_id_table
72 void ls102xa_config_smmu_stream_id(struct smmu_stream_id *id, uint32_t num);
  /external/u-boot/arch/arm/mach-sunxi/
cpu_info.c 43 uint id; local
47 id = readl(SUNXI_SRAMC_BASE + 0x24) >> 16;
50 return id;
76 printf("CPU: Allwinner A31? (SUN6I, id: %d)\n",
  /external/u-boot/arch/m68k/cpu/mcf523x/
cpu.c 35 u16 id = 0; local
43 id = 5235;
47 if (id) {
50 printf("Freescale MCF%d (Mask:%01x Version:%x)\n", id, msk,
  /external/u-boot/arch/m68k/cpu/mcf532x/
cpu.c 37 u16 id = 0; local
46 id = 53010;
49 id = 53012;
52 id = 53015;
55 id = 53011;
58 id = 53013;
63 id = 5329;
66 id = 5328;
69 id = 5327;
72 id = 5373
    [all...]

Completed in 516 milliseconds

<<11121314151617181920>>